<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-31710431</id><updated>2011-12-14T18:37:01.845-08:00</updated><title type='text'>Oracle 9i Tutorials</title><subtitle type='html'>All about Oracle 9i. It contains information about Oracle fundamentals. It also includes some tutorial about how to connect to oracle 9i, how to create database, tablespace, managing control file in Oracle 9i with some example.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ora9i.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31710431/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://ora9i.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Gaurang Patel</name><uri>http://www.blogger.com/profile/05996192719055562736</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://photos1.blogger.com/blogger/403/1965/320/me.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-31710431.post-115393672010953061</id><published>2006-07-26T10:57:00.000-07:00</published><updated>2006-07-27T16:05:21.843-07:00</updated><title type='text'>Oracle 9i Tutorials</title><content type='html'>&lt;a style="color: rgb(102, 0, 0); font-weight: bold;" href="http://patelgaurang.blogspot.com"&gt;Back to Home Page&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);"&gt;Oracle 9i Tutorial&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);"&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);font-family:georgia;" &gt;1. What is Oracle? What are the primary compotnents of Oracle Architecture Database.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Oracle is a database which is developed by a company called Oracle Corporation Ltd.&lt;br /&gt;Primary Components of Oracle architecture.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;Oracle Server&lt;/span&gt;    &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;A Database management system that provides an open, comprehensive and integrated approach to information management. There are several files, processes and memory structures in Oracle server. Some are used for SQL processing, some are for performance and some to ensure the recovery of database incase of error. It consists of Oracle Instance and an Oracle Database.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;Oracle Instance:&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size:85%;"&gt;A combination of memory structure and background processes. Instance must be started to access the oracle database. When it starts SGA (System Global Area or called Shared Global Area is allocated and oracle background processes are also stared. Background processes perform input/output and monitor other oracle processes for better performance and reliability. It always open one and only one database at a time.&lt;br /&gt;                                            &lt;br /&gt;&lt;/span&gt;        &lt;span style="font-weight: bold; color: rgb(0, 0, 102);font-size:85%;" &gt;Oracle Database:&lt;/span&gt; &lt;span style="font-size:85%;"&gt;Is a collection of data which consist of three types of files. Datafiles, Control files, redo log files.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Other Key files: &lt;/span&gt; &lt;/span&gt; &lt;span style="font-size:85%;"&gt;Non database files such as password file, parameter file, archived redo log files are used to authenticate privileged users to start up and shut dow, to configure the instance and for recovery from media failures respectively.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;User and Server Processes and Ohter Processes like Advance queuing, Real Application Clusters, Shared Server, Advance Replication. &lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);"&gt;2. How to eastablish connection to oracle server? What are different ways to connect to an Oracle server?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;When user starts a tool such as SQL plus or runs any application user process is executed. When user logs on to Oracle server a process is created on the server. This process is called server process. Now this server process will communicated with oracle instance on behalf of the user process that runs on  client.&lt;br /&gt;In short, server process runs sql statements on behalf of user.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Connections:&lt;br /&gt;There are three ways to establish a connetion with oracle server.&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;User can log on to the OS on which oracle Instance is running and starts and application or tool which access the database on the same system. Interprocess communication is used to establish a communication pathway between oracle server and Host operating system.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;User starts an application or sql tool on one machine(client machine) and connects over a network to a machine running oracle instance. This configuation is also called Client-Server.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Three Tiered Connection. Here user's computer communicates over Network to an application or N/w server which is connected to a network to the machine running the oracle instance.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);"&gt;3. What is a Session? When it starts and when it terminates?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt; Session is a specific connection of a user to an oracle server. It starts when user is validated by oracle server and teminates when user logs out or when there is an abnormal termination occures.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);"&gt;4. What is Memory Structure in Oracle?   &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt; Oracle consists of Two memory structures&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li style="font-weight: bold; color: rgb(0, 0, 102);"&gt;&lt;span style="font-size:85%;"&gt;SGA ( System Global Area )&lt;/span&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Allocated when Oracle Instance starts. Fundamental Component of an Oracle Instace.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li style="font-weight: bold; color: rgb(0, 0, 102);"&gt;&lt;span style="font-size:85%;"&gt;PGA ( Program Global Area )&lt;/span&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Memory reserved for each user process connecting to Oracle database&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Allocated when a process is created.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Deallocated when a process is terminated.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Used by only one process.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);font-size:100%;" &gt;5. Oracle Instance&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Memory Structures&lt;br /&gt;&lt;br /&gt;Shared Pool&lt;br /&gt;Database Buffer Cache&lt;br /&gt;Redo log buffer Cache&lt;br /&gt;Large Pool&lt;br /&gt;Java Pool&lt;br /&gt;&lt;br /&gt;Backgroung Process Stuctures&lt;br /&gt;&lt;br /&gt;PMON&lt;br /&gt;SMON&lt;br /&gt;DBWR&lt;br /&gt;LGWR&lt;br /&gt;CKPT&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;// Under Construction &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 102);"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-5854221744164635";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_type = "text_image";
google_ad_channel ="";
//--&gt;&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31710431-115393672010953061?l=ora9i.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ora9i.blogspot.com/feeds/115393672010953061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31710431&amp;postID=115393672010953061' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31710431/posts/default/115393672010953061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31710431/posts/default/115393672010953061'/><link rel='alternate' type='text/html' href='http://ora9i.blogspot.com/2006/07/oracle-9i-tutorials.html' title='Oracle 9i Tutorials'/><author><name>Gaurang Patel</name><uri>http://www.blogger.com/profile/05996192719055562736</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://photos1.blogger.com/blogger/403/1965/320/me.jpg'/></author><thr:total>2</thr:total></entry></feed>
