<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Online Oracle DBA Weblog</title>
	<atom:link href="http://onlineoracledba.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://onlineoracledba.wordpress.com</link>
	<description>Learn Oracle DBA</description>
	<lastBuildDate>Thu, 20 Mar 2008 03:24:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='onlineoracledba.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/733917ffd5180749abcde1e7c2a2443b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Online Oracle DBA Weblog</title>
		<link>http://onlineoracledba.wordpress.com</link>
	</image>
			<item>
		<title>Oracle Basic Concepts</title>
		<link>http://onlineoracledba.wordpress.com/2008/03/19/oracle-basic-concepts/</link>
		<comments>http://onlineoracledba.wordpress.com/2008/03/19/oracle-basic-concepts/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 02:49:59 +0000</pubDate>
		<dc:creator>onlineoracledba</dc:creator>
				<category><![CDATA[Oracle Basic Concepts]]></category>

		<guid isPermaLink="false">http://onlineoracledba.wordpress.com/?p=4</guid>
		<description><![CDATA[ Page 1 2 3
This is a collection of 17 FAQs for Oracle DBA on fundamental concepts. The clear answers and sample scripts provided can be used as learning tutorials or interview preparation guides. Topics included in this FAQ are:

What Is Oracle?
What Is an Oracle Database?
What Is an Oracle Instance?
What Is a Parameter File?
What Is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlineoracledba.wordpress.com&blog=3206207&post=4&subd=onlineoracledba&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Page 1 <a href="http://onlineoracledba.wordpress.com/oracle-dba-oracle-basic-concepts2/">2</a> <a href="http://onlineoracledba.wordpress.com/oracle-basic-concepts3/">3</a></p>
<p>This is a collection of 17 FAQs for Oracle DBA on fundamental concepts. The clear answers and sample scripts provided can be used as learning tutorials or interview preparation guides. Topics included in this FAQ are:</p>
<ol>
<li><font color="#688a00">What Is Oracle?</font></li>
<li><font color="#688a00">What Is an Oracle Database?</font></li>
<li><font color="#688a00">What Is an Oracle Instance?</font></li>
<li><font color="#688a00">What Is a Parameter File?</font></li>
<li><font color="#688a00">What Is a Server Parameter File?</font></li>
<li><font color="#688a00">What Is a Initialization Parameter File?</font></li>
<li><font color="#688a00">What is System Global Area (SGA)?</font></li>
<li><font color="#688a00">What is Program Global Area (PGA)?</font></li>
<li><font color="#688a00">What Is a User Account?</font></li>
<li><font color="#688a00">What Is the Relation of a User Account and a Schema?</font></li>
<li><font color="#688a00">What Is a User Role?</font></li>
<li><font color="#688a00">What is a Database Schema?</font></li>
<li><font color="#688a00">What Is a Static Data Dictionary?</font></li>
<li><font color="#688a00">What Is a Dynamic Performance View?</font></li>
<li><font color="#688a00">What Is SQL*Plus?</font></li>
<li><font color="#688a00">What Is What Is Transport Network Substrate (TNS)?</font></li>
<li><font color="#688a00">What Is Open Database Communication (ODBC)?</font></li>
</ol>
<p>Descriptions of some key concepts are based on Oracle documentations.</p>
<p class="heading"><strong><font color="#688a00">What Is Oracle?</font></strong></p>
<p>Oracle is a company. Oracle is also a database server, which manages data in a very structured way. It allows users to store and retrieve related data in a multiuser environment so that many users can concurrently access the same data. All this is accomplished while delivering high performance. A database server also prevents unauthorized access and provides efficient solutions for failure recovery.</p>
<p class="heading"><font color="#688a00">What Is an Oracle Database?</font></p>
<p>An Oracle database is a collection of data treated as a big unit in the database server.</p>
<p class="heading"><font color="#688a00">What Is an Oracle Instance?</font></p>
<p>Every running Oracle database is associated with an Oracle instance. When a database is started on a database server (regardless of the type of computer), Oracle allocates a memory area called the System Global Area (SGA) and starts one or more Oracle processes. This combination of the SGA and the Oracle processes is called an Oracle instance. The memory and processes of an instance manage the associated database&#8217;s data efficiently and serve the one or multiple users of the database.</p>
<p class="heading"><strong><font color="#688a00">What Is a Parameter File?</font></strong></p>
<p>A parameter file is a file that contains a list of initialization parameters and a value for each parameter. You specify initialization parameters in a parameter file that reflect your particular installation. Oracle supports the following two types of parameter files:</p>
<ul>
<li>Server Parameter Files &#8211; Binary version. Persistent.</li>
<li>Initialization Parameter Files &#8211; Text version. Not persistent.</li>
</ul>
<p class="heading"><font color="#688a00"><strong>What Is a Server Parameter File?</strong></font></p>
<p>A server parameter file is a binary file that acts as a repository for initialization parameters. The server parameter file can reside on the machine where the Oracle database server executes. Initialization parameters stored in a server parameter file are persistent, in that any changes made to the parameters while an instance is running can persist across instance shutdown and startup.<span id="more-4"></span></p>
<p class="heading"><strong><font color="#688a00">What Is a Initialization Parameter File?</font></strong></p>
<p>An initialization parameter file is a text file that contains a list of initialization parameters. The file should be written in the client&#8217;s default character set. Sample initialization parameter files are provided on the Oracle distribution medium for each operating system. A sample file is sufficient for initial use, but you will probably want to modify the file to tune the database for best performance. Any changes will take effect after you completely shut down and restart the instance.</p>
<p class="heading"><strong><font color="#688a00">What is System Global Area (SGA)?</font></strong></p>
<p>The System Global Area (SGA) is a memory area that contains data shared between all database users such as buffer cache and a shared pool of SQL statements. The SGA is allocated in memory when an Oracle database instance is started, and any change in the value will take effect at the next startup </p>
<p>Page 1 <a href="http://onlineoracledba.wordpress.com/oracle-dba-oracle-basic-concepts2/">2</a> <a href="http://onlineoracledba.wordpress.com/oracle-basic-concepts3/">3</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onlineoracledba.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onlineoracledba.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onlineoracledba.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onlineoracledba.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onlineoracledba.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onlineoracledba.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onlineoracledba.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onlineoracledba.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onlineoracledba.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onlineoracledba.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onlineoracledba.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onlineoracledba.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlineoracledba.wordpress.com&blog=3206207&post=4&subd=onlineoracledba&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://onlineoracledba.wordpress.com/2008/03/19/oracle-basic-concepts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef317a51fd3dff5a780af4417b5a381f?s=96&#38;d=identicon" medium="image">
			<media:title type="html">onlineoracledba</media:title>
		</media:content>
	</item>
	</channel>
</rss>