<?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-3099001899839101092</id><updated>2012-02-16T05:17:23.058-08:00</updated><title type='text'>Oracle Database</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://learn--oracle.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3099001899839101092/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://learn--oracle.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>sagar</name><uri>http://www.blogger.com/profile/10560725940348334680</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></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-3099001899839101092.post-7310043878618806409</id><published>2006-11-20T02:20:00.000-08:00</published><updated>2006-11-20T02:22:02.018-08:00</updated><title type='text'>Oracle</title><content type='html'>&lt;p&gt;An &lt;strong&gt;Oracle database&lt;/strong&gt; consists of a &lt;a href="http://en.wikipedia.org/wiki/Collection" title="Collection"&gt;collection&lt;/a&gt; of &lt;a href="http://en.wikipedia.org/wiki/Data" title="Data"&gt;data&lt;/a&gt; managed by an Oracle &lt;a href="http://en.wikipedia.org/wiki/Database_management_system" title="Database management system"&gt;database management system&lt;/a&gt;. Popular &lt;a href="http://en.wikipedia.org/wiki/Generic" title="Generic"&gt;generic&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Usage" title="Usage"&gt;usage&lt;/a&gt; also uses the term to refer to the Oracle &lt;a href="http://en.wikipedia.org/wiki/DBMS" title="DBMS"&gt;DBMS&lt;/a&gt; management software, but &lt;a href="http://en.wikipedia.org/wiki/Necessary_and_sufficient_conditions" title="Necessary and sufficient conditions"&gt;not necessarily&lt;/a&gt; to a specific &lt;a href="http://en.wikipedia.org/wiki/Database" title="Database"&gt;database&lt;/a&gt; under its control.&lt;/p&gt; &lt;p&gt;One can refer to the Oracle &lt;a href="http://en.wikipedia.org/wiki/Database" title="Database"&gt;database&lt;/a&gt; management system unambiguously as &lt;strong&gt;Oracle DBMS&lt;/strong&gt; or (since it manages databases which have &lt;a href="http://en.wikipedia.org/wiki/Relational_database" title="Relational database"&gt;relational&lt;/a&gt; characteristics) as &lt;strong&gt;Oracle RDBMS&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_Corporation" title="Oracle Corporation"&gt;Oracle Corporation&lt;/a&gt; itself blurs the very useful distinction between:&lt;/p&gt; &lt;ol&gt;&lt;li&gt;data managed by an Oracle RDBMS&lt;/li&gt;&lt;li&gt;an Oracle database, and&lt;/li&gt;&lt;li&gt;the Oracle &lt;a href="http://en.wikipedia.org/wiki/Relational_database_management_system" title="Relational database management system"&gt;RDBMS&lt;/a&gt; software itself&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;when it refers nowadays to the Oracle RDBMS (the software it sells for the purpose of managing databases) as the &lt;em&gt;Oracle Database&lt;/em&gt;. The distinction between the managed data (the database) and the software which manages the data (the DBMS / RDBMS) relies, in Oracle's marketing literature, on the capitalisation of the word &lt;em&gt;database&lt;/em&gt;.&lt;/p&gt; &lt;p&gt;Oracle Corporation produces and markets the Oracle DBMS, which many database applications use extensively on many popular computing platforms.&lt;/p&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Larry_Ellison" title="Larry Ellison"&gt;Larry Ellison&lt;/a&gt; and his friends and former co-workers &lt;a href="http://en.wikipedia.org/wiki/Bob_Miner" title="Bob Miner"&gt;Bob Miner&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Ed_Oates" title="Ed Oates"&gt;Ed Oates&lt;/a&gt; - who had started a consultancy called Software Development Laboratories (SDL) - developed the original Oracle DBMS software. They called their finished product &lt;em&gt;Oracle&lt;/em&gt; after the code name of a &lt;a href="http://en.wikipedia.org/wiki/Central_Intelligence_Agency" title="Central Intelligence Agency"&gt;CIA&lt;/a&gt;-funded project they had worked on while previously employed by &lt;a href="http://en.wikipedia.org/wiki/Ampex" title="Ampex"&gt;Ampex&lt;/a&gt;.&lt;/p&gt; &lt;h2&gt;Database structure&lt;/h2&gt;An Oracle database comprises an instance and data storage. The instance comprises a set of operating system processes and memory structures that interact with the storage. Typical processes include PMON (the process monitor) and SMON (the system monitor). &lt;p&gt;Oracle users refer to the server-side memory-structure as the SGA (System Global Area). The SGA typically holds &lt;a href="http://en.wikipedia.org/wiki/Cache" title="Cache"&gt;cache&lt;/a&gt; information like data-buffers, &lt;a href="http://en.wikipedia.org/wiki/SQL" title="SQL"&gt;SQL&lt;/a&gt; commands and user information. In addition to storage, the database consists of online redo logs (which hold transactional history). Processes can in turn archive the online redo logs into archive logs (offline redo logs), which provide the basis (if necessary) for data recovery and for some forms of &lt;a href="http://en.wikipedia.org/wiki/Data_replication" title="Data replication"&gt;data replication&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The Oracle RDBMS stores data &lt;strong&gt;logically&lt;/strong&gt; in the form of &lt;em&gt;&lt;a href="http://en.wikipedia.org/wiki/Tablespace" title="Tablespace"&gt;tablespaces&lt;/a&gt;&lt;/em&gt; and &lt;strong&gt;physically&lt;/strong&gt; in the form of &lt;em&gt;data &lt;a href="http://en.wikipedia.org/wiki/Computer_file" title="Computer file"&gt;files&lt;/a&gt;&lt;/em&gt;. Tablespaces can contain various types of &lt;em&gt;&lt;a href="http://en.wikipedia.org/wiki/Memory_segment" title="Memory segment"&gt;segments&lt;/a&gt;&lt;/em&gt;, for example, Data Segments, Index Segments etc. Segments in turn comprise one or more &lt;em&gt;extents&lt;/em&gt;. Extents comprise groups of contiguous &lt;em&gt;data blocks&lt;/em&gt;. Data blocks form the basic units of &lt;a href="http://en.wikipedia.org/wiki/Data_storage" title="Data storage"&gt;data storage&lt;/a&gt;. At the physical level, data files comprise one or more data blocks, where the &lt;a href="http://en.wikipedia.org/wiki/Block_size_%28data_storage_and_transmission%29" title="Block size (data storage and transmission)"&gt;blocksize&lt;/a&gt; can vary.&lt;/p&gt; &lt;p&gt;Oracle keeps track of its &lt;a href="http://en.wikipedia.org/wiki/Data_storage" title="Data storage"&gt;data storage&lt;/a&gt; with the help of information stored in the SYSTEM tablespace. The SYSTEM tablespace contains the &lt;a href="http://en.wikipedia.org/wiki/Data_dictionary" title="Data dictionary"&gt;data dictionary&lt;/a&gt; - and often (by default) &lt;a href="http://en.wikipedia.org/wiki/Index_%28database%29" title="Index (database)"&gt;indexes&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Cluster" title="Cluster"&gt;clusters&lt;/a&gt;. (A data dictionary consists of a special collection of &lt;a href="http://en.wikipedia.org/wiki/Table_%28database%29" title="Table (database)"&gt;tables&lt;/a&gt; that contains information about all user &lt;a href="http://en.wikipedia.org/wiki/Object_%28computer_science%29" title="Object (computer science)"&gt;objects&lt;/a&gt; in the database). Since version 8i, the Oracle RDBMS also supports "locally managed" tablespaces which can store space management information in bitmaps in their own &lt;a href="http://en.wikipedia.org/wiki/Header" title="Header"&gt;headers&lt;/a&gt; rather than in the SYSTEM tablespace (as happens with the default "dictionary-managed" tablespaces).&lt;/p&gt; &lt;p&gt;If the Oracle database administrator has instituted &lt;a href="http://en.wikipedia.org/wiki/Oracle_RAC" title="Oracle RAC"&gt;Oracle RAC&lt;/a&gt; (Real Application Clusters), then multiple instances, usually on different servers, attach to a central storage array. This scenario offers numerous advantages, most importantly performance, scalability and redundancy. However, support becomes more complex, and many sites do not use RAC. In version 10g, &lt;a href="http://en.wikipedia.org/wiki/Grid_computing" title="Grid computing"&gt;grid computing&lt;/a&gt; has introduced shared resources where an instance can use (for example) &lt;a href="http://en.wikipedia.org/wiki/Central_processing_unit" title="Central processing unit"&gt;CPU&lt;/a&gt; resources from another node (computer) in the grid.&lt;/p&gt; &lt;p&gt;The Oracle DBMS can store and execute &lt;a href="http://en.wikipedia.org/wiki/Stored_procedure" title="Stored procedure"&gt;stored procedures&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Function_%28programming%29" title="Function (programming)"&gt;functions&lt;/a&gt; within itself. &lt;a href="http://en.wikipedia.org/wiki/PL_SQL" title="PL SQL"&gt;PL/SQL&lt;/a&gt; (Oracle Corporation's proprietary procedural extension to &lt;a href="http://en.wikipedia.org/wiki/SQL" title="SQL"&gt;SQL&lt;/a&gt;), or the &lt;a href="http://en.wikipedia.org/wiki/Object_orientation" title="Object orientation"&gt;object-oriented&lt;/a&gt; language &lt;a href="http://en.wikipedia.org/wiki/Java_programming_language" title="Java programming language"&gt;Java&lt;/a&gt; can invoke such code &lt;a href="http://en.wikipedia.org/wiki/Object_%28computer_science%29" title="Object (computer science)"&gt;objects&lt;/a&gt; and/or provide the programming structures for writing them.&lt;/p&gt; &lt;p&gt;Older Oracle database installations (pre-10g) traditionally came with a default &lt;a href="http://en.wikipedia.org/wiki/Schema" title="Schema"&gt;schema&lt;/a&gt; called &lt;em&gt;scott&lt;/em&gt;. After the installation process has set up the sample tables, the user can log into the database with the username &lt;em&gt;scott&lt;/em&gt; and the password &lt;em&gt;tiger&lt;/em&gt;. (The name of the "scott" schema originated with Bruce Scott, one of the first employees at Oracle (then Software Development Laboratories), who had a cat named Tiger.)&lt;/p&gt; &lt;h2&gt;Version numbering conventions&lt;/h2&gt;Other Oracle products may become confused with the Oracle RDBMS — these have historically followed their own release-numbering and naming conventions. As of the RDBMS 10g release, Oracle Corporation seems to have started to make an effort to standardize all current versions of its major products using the "10g" label, although some sources often refer to Oracle Applications Release 11i as &lt;em&gt;Oracle 11i&lt;/em&gt;. Major database-related products and some of their versions include: &lt;ul&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_Application_Server" title="Oracle Application Server"&gt;Oracle Application Server&lt;/a&gt; 10g (aka Oracle AS 10g) — a &lt;a href="http://en.wikipedia.org/wiki/Middleware" title="Middleware"&gt;middleware&lt;/a&gt; product;&lt;/li&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_Applications" title="Oracle Applications"&gt;Oracle Applications&lt;/a&gt; Release 11i (aka Oracle e-Business Suite, Oracle Financials or Oracle 11i) — a suite of business applications;&lt;/li&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_Developer_Suite" title="Oracle Developer Suite"&gt;Oracle Developer Suite&lt;/a&gt; 10g (9.0.4);&lt;/li&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Oracle_JDeveloper" title="Oracle JDeveloper"&gt;Oracle JDeveloper&lt;/a&gt; 10g — a &lt;a href="http://en.wikipedia.org/wiki/Java_programming_language" title="Java programming language"&gt;Java&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Integrated_development_environment" title="Integrated development environment"&gt;integrated development environment&lt;/a&gt;;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Oracle's numbering conventions have confused many people; they warrant a brief explanation. Since version 7, Oracle's &lt;a href="http://en.wikipedia.org/wiki/Relational_database_management_system" title="Relational database management system"&gt;RDBMS&lt;/a&gt; release numbering has used the following codes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Oracle7: 7.0.16 — 7.3.4&lt;/li&gt;&lt;li&gt;Oracle8 Database: 8.0.3 — 8.0.6&lt;/li&gt;&lt;li&gt;Oracle8i Database Release 1: 8.1.5.0 — 8.1.5.1&lt;/li&gt;&lt;li&gt;Oracle8i Database Release 2: 8.1.6.0 — 8.1.6.3&lt;/li&gt;&lt;li&gt;Oracle8i Database Release 3: 8.1.7.0 — 8.1.7.4&lt;/li&gt;&lt;li&gt;Oracle9i Database Release 1: 9.0.1.0 released May 2002     &lt;ul&gt;&lt;li&gt;Codenamed "the last database"&lt;/li&gt;&lt;li&gt;9.0.1.5 (Latest current patchset as of December 2003)&lt;/li&gt;&lt;/ul&gt;   &lt;/li&gt;&lt;li&gt;Oracle9i Database Release 2: 9.2.0.1 — 9.2.0.8 (Latest current patchset as of August 2006)&lt;/li&gt;&lt;li&gt;Oracle Database 10g Release 1: 10.1.0.2 — 10.1.0.5 (Latest current patchset as of February 2006)&lt;/li&gt;&lt;li&gt;Oracle Database 10g Release 2: 10.2.0.1 — 10.2.0.2 (&lt;a href="http://www.oracle.com/database/index.html" title="http://www.oracle.com/database/index.html"&gt;Latest&lt;/a&gt; current patchset as of March 2006)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;The version-numbering syntax within each release follows the pattern: major.maintenance.application-server.component-specific.platform-specific.&lt;/p&gt; &lt;p&gt;For example, "10.2.0.1 for 64-bit Solaris" means: 10th major version of Oracle, maintenance level 2, Oracle Application Server (OracleAS) 0, level 1 for Solaris 64-bit.&lt;/p&gt; &lt;p&gt;The Oracle Administrator's Guide offers further information on Oracle release numbers. Oracle provides &lt;a href="http://www.oracle.com/technology/support/patches.htm" title="http://www.oracle.com/technology/support/patches.htm"&gt;a table&lt;/a&gt; showing the latest patch set release by major release, operating system and hardware architecture.&lt;/p&gt;              &lt;p class="post-footer"&gt;       &lt;em&gt;posted by sunita @ &lt;a href="http://oracle-data.blogspot.com/2006/09/oracle-database.html" title="permanent link"&gt;3:16 AM&lt;/a&gt;&lt;/em&gt;                 &lt;a class="comment-link" href="http://www.blogger.com/comment.g?blogID=35287055&amp;postID=115961140007561970" href="http://www.blogger.com/comment.g?blogID=35287055&amp;amp;postID=115961140007561970;"&gt;0 comments&lt;/a&gt;              &lt;/p&gt;      &lt;!-- End .post --&gt;&lt;!-- Begin #comments --&gt;&lt;!-- End #comments --&gt;&lt;!-- Begin .post --&gt;                                  &lt;a name="115961050588557157"&gt;&lt;/a&gt;                &lt;h3 class="post-title"&gt;      Oracle Database 10g Release 1(10.1.0.3)        &lt;/h3&gt;                &lt;span style="font-weight: bold;" class="topstoryhead"&gt;Oracle Database 10&lt;i&gt;g&lt;/i&gt; Release  1 (10.1.0.3)&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="parahead2"&gt;Enterprise/Standard Edition for Linux Itanium&lt;/span&gt;&lt;br /&gt;&lt;table border="0" width="100%"&gt;  &lt;tbody&gt;  &lt;tr&gt;     &lt;td width="97%"&gt;        &lt;table border="0" cellpadding="0" cellspacing="0" width="100%"&gt;         &lt;tbody&gt;          &lt;tr&gt;            &lt;td width="24"&gt;&lt;br /&gt;&lt;/td&gt;            &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt;         &lt;/tr&gt;         &lt;tr&gt;            &lt;td width="24"&gt;&lt;br /&gt;&lt;/td&gt;            &lt;td colspan="2" class="boldbodycopy"&gt;Download the Complete Files&lt;/td&gt;         &lt;/tr&gt;         &lt;tr&gt;            &lt;td width="24"&gt;&lt;br /&gt;&lt;/td&gt;           &lt;td width="16"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;            &lt;td width="743"&gt;&lt;a href="http://download.oracle.com/otn/linux/oracle10g/Linux_IA64_DB_10_1_0_3_Disk1.cpio.gz" class="bodylink"&gt;Linux_IA64_DB_10_1_0_3_Disk1.cpio.gz&lt;/a&gt; &lt;span class="textA"&gt;(647,651,588              bytes) (cksum - 3072466878)&lt;/span&gt; &lt;/td&gt;          &lt;/tr&gt;         &lt;tr&gt;            &lt;td width="24"&gt;&lt;br /&gt;&lt;/td&gt;           &lt;td width="16"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;           &lt;td width="743"&gt;&lt;a href="http://download.oracle.com/otn/linux/oracle10g/Linux_IA64_DB_10_1_0_3_Disk2.cpio.gz" class="bodylink"&gt;Linux_IA64_DB_10_1_0_3_Disk2.cpio.gz&lt;/a&gt; &lt;span class="textA"&gt;(99,601,513              bytes) (cksum - 2739724387)&lt;/span&gt; &lt;/td&gt;          &lt;/tr&gt;          &lt;tr&gt;            &lt;td width="24"&gt;&lt;br /&gt;&lt;/td&gt;            &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt;         &lt;/tr&gt;         &lt;tr&gt;            &lt;td width="24"&gt;&lt;br /&gt;&lt;/td&gt;           &lt;td colspan="2" class="boldbodycopy"&gt;Directions&lt;/td&gt;         &lt;/tr&gt;          &lt;tr valign="top"&gt;            &lt;td height="18" width="24"&gt;&lt;br /&gt;&lt;/td&gt;           &lt;td height="18" width="16"&gt;&lt;br /&gt;&lt;/td&gt;            &lt;td class="bodycopy" height="18" width="743"&gt;1. Run "gunzip &lt;filename&gt;"              on all the files.   Eg.: gunzip Linux_IA64_DB_10_1_0_3_Disk1.cpio.gz&lt;/filename&gt;&lt;/td&gt;         &lt;/tr&gt;         &lt;tr valign="top"&gt;            &lt;td height="17" width="24"&gt;&lt;br /&gt;&lt;/td&gt;            &lt;td height="17" width="16"&gt;&lt;br /&gt;&lt;/td&gt;           &lt;td class="bodycopy" height="17" width="743"&gt;2. Extract the cpio archives              with the command "cpio -idmv &lt; &lt;filename&gt;"&lt;br /&gt;            Eg.: cpio -idmv &lt;&gt;         &lt;/filename&gt;&lt;/td&gt;&lt;/tr&gt;          &lt;tr valign="top"&gt;            &lt;td height="17" width="24"&gt;&lt;br /&gt;&lt;/td&gt;            &lt;td height="17" width="16"&gt;&lt;br /&gt;&lt;/td&gt;           &lt;td class="bodycopy" height="17" width="743"&gt;3. Installation guides              and general Oracle Database 10&lt;i&gt;g&lt;/i&gt; documentation can be found              &lt;a href="http://www.oracle.com/technology/documentation/database10g.html" class="boldbodylink"&gt;here&lt;/a&gt;.&lt;/td&gt;          &lt;/tr&gt;          &lt;/tbody&gt;        &lt;/table&gt; &lt;/td&gt;      &lt;td valign="top" width="3%"&gt;&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;      &lt;td width="97%"&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td valign="top" width="3%"&gt;&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;span class="parahead1"&gt;Oracle Database 10&lt;i&gt;g&lt;/i&gt; Companion CD Release 1 (10.1.0.3)  for Linux Itanium&lt;/span&gt;&lt;br /&gt;&lt;table border="0" width="100%"&gt;   &lt;tbody&gt;    &lt;tr&gt;      &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td valign="top" width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;     &lt;td width="95%"&gt;&lt;a href="http://download.oracle.com/otn/linux/oracle10g/Linux_IA64_CCD_10_1_0_3_Disk1.cpio.gz" class="bodylink"&gt;Linux_IA64_CCD_10_1_0_3_Disk1.cpio.gz&lt;/a&gt; &lt;span class="textA"&gt;(630,810,360 bytes) (cksum - 2185536258)&lt;/span&gt;&lt;span class="textB"&gt;*Includes: Examples, HTML DB, HTTP Server, JPublisher, JavaVM ncomps, Legato Single Server, Text Knowledgebase, InterMedia ncomps&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;      &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td valign="top" width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;     &lt;td valign="top" width="94%"&gt;&lt;a href="http://download.oracle.com/otn/nt/oracle10g/htmldb/htmldb_2.0.zip" class="bodylink"&gt;Oracle Application Express (formerly HTML DB) v2.0&lt;/a&gt; &lt;span class="textA"&gt;(56,104,916        bytes) - released 21-SEP-2005&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;      &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td valign="top" width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;     &lt;td valign="top" width="94%"&gt;&lt;a href="http://download.oracle.com/otn/nt/oracle10g/htmldb/htmldb_1.6.0.zip" class="bodylink"&gt;Oracle Application Express (formerly HTML DB) v1.6 &lt;/a&gt; &lt;span class="textA"&gt;(55,219,364        bytes) - released 30-DEC-2004&lt;/span&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;/tbody&gt;  &lt;/table&gt;  &lt;span class="parahead1"&gt;&lt;br /&gt;Oracle Database 10&lt;i&gt;g&lt;/i&gt; Client Release 1 (10.1.0.3) for Linux Itanium&lt;/span&gt;&lt;br /&gt;&lt;table border="0" width="100%"&gt; &lt;tbody&gt; &lt;tr&gt;  &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;  &lt;td width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;      &lt;td width="95%"&gt;&lt;a href="http://download.oracle.com/otn/linux/oracle10g/Linux_IA64_Client_10_1_0_3_Disk1.cpio.gz" class="bodylink"&gt;Linux_IA64_Client_10_1_0_3_Disk1.cpio.gz&lt;/a&gt; &lt;span class="textA"&gt;(452,049,915 bytes) (cksum - 1327104796)&lt;/span&gt; &lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;  &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt; &lt;td width="2%"&gt;&lt;br /&gt;&lt;/td&gt; &lt;td width="95%"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;  &lt;/table&gt;  &lt;span class="parahead1"&gt;Oracle Cluster Ready Services Release 1 (10.1.0.3) for  Linux Itanium&lt;/span&gt;&lt;br /&gt;&lt;table border="0" width="100%"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;  &lt;td width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;      &lt;td width="95%"&gt;&lt;a href="http://download.oracle.com/otn/linux/oracle10g/Linux_IA64_CRS_10_1_0_3_Disk1.cpio.gz" class="bodylink"&gt;Linux_IA64_CRS_10_1_0_3_Disk1.cpio.gz&lt;/a&gt; &lt;span class="textA"&gt;(189,663,936        bytes) (cksum - 771267648)&lt;/span&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt; &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;  &lt;td width="2%"&gt;&lt;br /&gt;&lt;/td&gt; &lt;td width="95%"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;  &lt;/table&gt;  &lt;span class="parahead1"&gt;Oracle Gateways 10&lt;i&gt;g&lt;/i&gt; Release 1 (10.1.0.3) for Linux  Itanium&lt;/span&gt;&lt;br /&gt;&lt;table border="0" width="100%"&gt;    &lt;tbody&gt;    &lt;tr&gt;      &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;     &lt;td width="95%"&gt;&lt;a href="http://download.oracle.com/otn/linux/oracle10g/gtwy_10103_linux_itanium.cpio.gz" class="bodylink"&gt;gtwy_10103_linux_itanium.cpio.gz&lt;/a&gt; &lt;span class="textA"&gt;(278,361,245        bytes) (cksum - 990276436)&lt;/span&gt;&lt;/td&gt;    &lt;/tr&gt;   &lt;tr&gt;      &lt;td width="3%"&gt;&lt;br /&gt;&lt;/td&gt;      &lt;td width="2%"&gt;&lt;br /&gt;&lt;/td&gt;     &lt;td width="95%"&gt;&lt;br /&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;/tbody&gt;  &lt;/table&gt; &lt;span class="parahead1"&gt;Instant Client&lt;/span&gt;&lt;br /&gt; &lt;table border="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top" width="3%"&gt;&lt;br /&gt;&lt;/td&gt; &lt;td valign="top" width="2%"&gt;&lt;img src="http://www.oracle.com/technology/images/bullets_and_symbols/bullet.gif" height="16" width="16" /&gt;&lt;/td&gt;  &lt;td width="95%"&gt;&lt;a href="http://www.oracle.com/technology/software/tech/oci/instantclient/index.html" class="bodylink"&gt;Instant Client&lt;/a&gt; &lt;span class="bodycopy"&gt;allows you to run your applications without installing the standard Oracle client or having an ORACLE_HOME. OCI, OCCI, ODBC, and JDBC applications work without modification, while using significantly less disk space than before. Even SQL*Plus can be used with Instant Client. No recompile, no hassle&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3099001899839101092-7310043878618806409?l=learn--oracle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learn--oracle.blogspot.com/feeds/7310043878618806409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3099001899839101092&amp;postID=7310043878618806409' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3099001899839101092/posts/default/7310043878618806409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3099001899839101092/posts/default/7310043878618806409'/><link rel='alternate' type='text/html' href='http://learn--oracle.blogspot.com/2006/11/oracle.html' title='Oracle'/><author><name>sagar</name><uri>http://www.blogger.com/profile/10560725940348334680</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
