Jump to content

Oracle Database: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
m rvv; Undid revision 626460557 by Baldabac (talk)
Line 1: Line 1:
{{Infobox software
{{Infobox software
| name=Oracle Database
| name = Oracle Database
| logo = [[File:Oracle logo.svg|250px]]
| logo = [[File:Oracle logo.svg|250px]]
| screenshot =
| screenshot =
Line 15: Line 15:
| status = Active
| status = Active
| programming language = [[Assembly language]], [[C (programming language)|C]], [[C++]]<ref>{{cite web
| programming language = [[Assembly language]], [[C (programming language)|C]], [[C++]]<ref>{{cite web
| url =/Vincent/implementations.html
| url = http://www.lextrait.com/Vincent/implementations.html
| title = The Programming Languages Beacon, v10.0
| title = The Programming Languages Beacon, v10.0
| first = Vincent
| first = Vincent
Line 28: Line 28:
}}
}}


'''Oracle Database''' (commonly referred to as '''Oracle RDBMS''' or simply as '''Oracle''') is an [[object-relational database management system]] <ref>{{cite web |url=/docs/cd/E11882_01/appdev.112/e11822/whatsnew.htm#i969790 |title= What's New|author= |work= |publisher= |accessdate=29 November 2010}}</ref> produced and marketed by [[Oracle Corporation]].
'''Oracle Database''' (commonly referred to as '''Oracle RDBMS''' or simply as '''Oracle''') is an [[object-relational database management system]] <ref>{{cite web |url=http://download.oracle.com/docs/cd/E11882_01/appdev.112/e11822/whatsnew.htm#i969790 |title= What's New|author= |work= |publisher= |accessdate=29 November 2010}}</ref> produced and marketed by [[Oracle Corporation]].


[[Larry Ellison]] and two friends and former co-workers, [[Bob Miner]] and [[Ed Oates]], started a consultancy called Software Development Laboratories (SDL) in 1977. SDL developed the original version of the Oracle software. The name ''Oracle'' comes from the code-name of a [[Central Intelligence Agency|CIA]]-funded project Ellison had worked on while previously employed by [[Ampex]].<ref>{{cite web|url=/g2/story/0,3604,215072,00.html |title=Welcome to Larryland |publisher=Guardian |accessdate=2009-12-19}}</ref>
[[Larry Ellison]] and two friends and former co-workers, [[Bob Miner]] and [[Ed Oates]], started a consultancy called Software Development Laboratories (SDL) in 1977. SDL developed the original version of the Oracle software. The name ''Oracle'' comes from the code-name of a [[Central Intelligence Agency|CIA]]-funded project Ellison had worked on while previously employed by [[Ampex]].<ref>{{cite web|url=http://www.guardian.co.uk/g2/story/0,3604,215072,00.html |title=Welcome to Larryland |publisher=Guardian |accessdate=2009-12-19}}</ref>


==Physical and logical structures==
==Physical and logical structures==


An Oracle database system—identified by an alphanumeric system identifier or SID<ref>{{cite web | url =/docs/cd/B28359_01/install.111/b32077/glossary.htm?type=popup#BABEBJAG | title = Glossary | accessdate = 2008-11-17 | author = | last = Bhakthavatsalam | first = Namrata | authorlink = |date= August 2008 | work = Oracle Database Client quote = The SID automatically defaults to the database name portion of the global database name (sales in the example sales.us.example.com) until you reach eight characters or enter a period. You can accept or change the default value. }}</ref>—comprises at least one [[Database|instance]] of the application, along with data storage. An instance—identified persistently by an instantiation number (or activation id: SYS.V_$DATABASE.ACTIVATION#)—comprises a set of operating-system [[process (computing)|processes]] and [[Computer data storage|memory]]-structures that interact with the [[Computer data storage|storage]]. (Typical processes include PMON (the process monitor) and SMON (the system monitor).) Oracle documentation can refer to an active database instance as a "shared memory realm".<ref>
An Oracle database system—identified by an alphanumeric system identifier or SID<ref>{{cite web | url = http://download.oracle.com/docs/cd/B28359_01/install.111/b32077/glossary.htm?type=popup#BABEBJAG | title = Glossary | accessdate = 2008-11-17 | author = | last = Bhakthavatsalam | first = Namrata | authorlink = |date= August 2008 | work = Oracle Database Client quote = The SID automatically defaults to the database name portion of the global database name (sales in the example sales.us.example.com) until you reach eight characters or enter a period. You can accept or change the default value. }}</ref>—comprises at least one [[Database|instance]] of the application, along with data storage. An instance—identified persistently by an instantiation number (or activation id: SYS.V_$DATABASE.ACTIVATION#)—comprises a set of operating-system [[process (computing)|processes]] and [[Computer data storage|memory]]-structures that interact with the [[Computer data storage|storage]]. (Typical processes include PMON (the process monitor) and SMON (the system monitor).) Oracle documentation can refer to an active database instance as a "shared memory realm".<ref>
{{cite book
{{cite book
| last = McLaughlin
| last = McLaughlin
| first = Michael
| first = Michael
| title = Oracle Database 11g & MySQL 5.6 Developer Handbook
| title = Oracle Database 11g & MySQL 5.6 Developer Handbook
| url =/books?id=uaMYNWuckBMC
| url = http://books.google.com/books?id=uaMYNWuckBMC
| accessdate = 2012-06-04
| accessdate = 2012-06-04
| series = Osborne Oracle Press
| series = Osborne Oracle Press
Line 64: Line 64:
|authorlink=
|authorlink=
|title= Expert Oracle Database 11g Administration
|title= Expert Oracle Database 11g Administration
|url=/?id=tdRes4IdLiIC
|url= http://books.google.com/?id=tdRes4IdLiIC
|accessdate= 2010-07-07
|accessdate= 2010-07-07
|series= The expert's voice in Oracle
|series= The expert's voice in Oracle
Line 78: Line 78:
A DBA can impose maximum quotas on storage per user within each tablespace.<ref>
A DBA can impose maximum quotas on storage per user within each tablespace.<ref>
{{cite web
{{cite web
|url =/cd/E11882_01/server.112/e25789/logical.htm#i8531
|url = http://docs.oracle.com/cd/E11882_01/server.112/e25789/logical.htm#i8531
|title = Oracle Database Concepts: 11g Release 2 (11.2)
|title = Oracle Database Concepts: 11g Release 2 (11.2)
|last1 = Ashdown
|last1 = Ashdown
Line 101: Line 101:


Disk files primarily represent one of the following structures:
Disk files primarily represent one of the following structures:

* Data and index files: These files provide the physical storage of data, which can consist of the data-dictionary data (associated to the tablespace SYSTEM), user data, or index data. These files can be managed manually or managed by Oracle itself ("Oracle-managed files"). Note that a datafile has to belong to exactly one tablespace, whereas a tablespace can consist of multiple datafiles.
* Data and index files: These files provide the physical storage of data, which can consist of the data-dictionary data (associated to the tablespace SYSTEM), user data, or index data. These files can be managed manually or managed by Oracle itself ("Oracle-managed files"). Note that a datafile has to belong to exactly one tablespace, whereas a tablespace can consist of multiple datafiles.
* Redo log files, consisting of all changes to the database, used to recover from an instance failure. Note that often a database will store these files multiple times, for extra security in case of disk failure. The identical redo log files are said to belong to the same group.
* Redo log files, consisting of all changes to the database, used to recover from an instance failure. Note that often a database will store these files multiple times, for extra security in case of disk failure. The identical redo log files are said to belong to the same group.
Line 112: Line 113:
Data files can occupy pre-allocated space in the file system of a computer server, utilize raw disk directly, or exist within [[Automatic Storage Management|ASM]] logical volumes.<ref>
Data files can occupy pre-allocated space in the file system of a computer server, utilize raw disk directly, or exist within [[Automatic Storage Management|ASM]] logical volumes.<ref>
{{cite web | first = Bob | last = Watkins | authorlink = | title = Look inside ASM disk groups with Oracle 10''g''R2's ASMCMD
{{cite web | first = Bob | last = Watkins | authorlink = | title = Look inside ASM disk groups with Oracle 10''g''R2's ASMCMD
| url =/5100-10878_11-6154262.html | archiveurl = | work = techrepublic.com | publisher = ZDNet | location = | doi = | date = 30 January 2007 | archivedate = | accessdate = 2009-07-30
| url = http://articles.techrepublic.com.com/5100-10878_11-6154262.html | archiveurl = | work = techrepublic.com | publisher = ZDNet | location = | doi = | date = 30 January 2007 | archivedate = | accessdate = 2009-07-30
| quote = In 10''g'', Oracle introduced a new kind of storage for its database product. Automatic Storage Management (ASM) is a logical volume manager that takes physical disk partitions and manages their contents [...] Until ASM, there were only two choices: file system storage and raw disk storage.
| quote = In 10''g'', Oracle introduced a new kind of storage for its database product. Automatic Storage Management (ASM) is a logical volume manager that takes physical disk partitions and manages their contents [...] Until ASM, there were only two choices: file system storage and raw disk storage.
}}
}}
Line 123: Line 124:
Oracle Corporation now de-emphasizes the <code>SCOTT</code> schema, as it uses few features of more recent Oracle releases. Most {{As of | 2009 | alt = recent}} examples supplied by Oracle Corporation reference the default HR or OE schemas.
Oracle Corporation now de-emphasizes the <code>SCOTT</code> schema, as it uses few features of more recent Oracle releases. Most {{As of | 2009 | alt = recent}} examples supplied by Oracle Corporation reference the default HR or OE schemas.


Other default schemas<ref>{{cite web|url=/ora/misc/known_schemas.html |title=Known schemas in Oracle |publisher=Adp-gmbh.ch |accessdate=2009-12-19}}</ref><ref>{{cite web|url=/abcdbaserver11gdefaultschema |title=11g Default Schema |publisher=ABCdba.com |accessdate=2010-10-26}}</ref> include:
Other default schemas<ref>{{cite web|url=http://www.adp-gmbh.ch/ora/misc/known_schemas.html |title=Known schemas in Oracle |publisher=Adp-gmbh.ch |accessdate=2009-12-19}}</ref><ref>{{cite web|url=http://abcdba.com/abcdbaserver11gdefaultschema |title=11g Default Schema |publisher=ABCdba.com |accessdate=2010-10-26}}</ref> include:
* <code>SYS</code> (essential core database structures and utilities)
* <code>SYS</code> (essential core database structures and utilities)
* <code>SYSTEM</code> (additional core database structures and utilities, and privileged account)
* <code>SYSTEM</code> (additional core database structures and utilities, and privileged account)
* <code>OUTLN</code> (utilized to store metadata for stored outlines for stable query-optimizer execution plans.<ref>{{cite web|url=/ora/tuning/cbo/plan_stability.html |title=Optimizer plan stability definition |publisher=Adp-gmbh.ch |accessdate=2009-12-19}}</ref>)
* <code>OUTLN</code> (utilized to store metadata for stored outlines for stable query-optimizer execution plans.<ref>{{cite web|url=http://www.adp-gmbh.ch/ora/tuning/cbo/plan_stability.html |title=Optimizer plan stability definition |publisher=Adp-gmbh.ch |accessdate=2009-12-19}}</ref>)
* <code>BI</code>, <code>IX</code>, <code>HR</code>, <code>OE</code>, <code>PM</code>, and <code>SH</code> (expanded sample schemas<ref>{{cite web|url=/ora/misc/sample_schemas.html |title=Oracle's sample schemas |publisher=Adp-gmbh.ch |accessdate=2009-12-19}}</ref> containing more data and structures than the older <code>SCOTT</code> schema).
* <code>BI</code>, <code>IX</code>, <code>HR</code>, <code>OE</code>, <code>PM</code>, and <code>SH</code> (expanded sample schemas<ref>{{cite web|url=http://www.adp-gmbh.ch/ora/misc/sample_schemas.html |title=Oracle's sample schemas |publisher=Adp-gmbh.ch |accessdate=2009-12-19}}</ref> containing more data and structures than the older <code>SCOTT</code> schema).


===={{Anchor|BUFFER-POOL}}System Global Area====
===={{Anchor|BUFFER-POOL}}System Global Area====
{{Main|System Global Area}}
{{Main|System Global Area}}


Each Oracle instance uses a [[System Global Area]] or SGA—a [[shared memory|shared-memory]] area—to store its data and control-information.<ref>{{cite web|url=/Oracle-Architecture-2.asp |title=Oracle Architecture, System Global Area |publisher=World-class-programme.com |accessdate=2009-12-19}}
Each Oracle instance uses a [[System Global Area]] or SGA—a [[shared memory|shared-memory]] area—to store its data and control-information.<ref>{{cite web|url=http://www.world-class-programme.com/Oracle-Architecture-2.asp |title=Oracle Architecture, System Global Area |publisher=World-class-programme.com |accessdate=2009-12-19}}
</ref>
</ref>


Line 163: Line 164:


====Library cache====
====Library cache====
The library cache<ref>{{cite web|url=/Oracle-Architecture-2.asp |title=Oracle architecture, the library cache section |publisher=World-class-programme.com |accessdate=2009-12-19}}</ref> stores shared SQL, caching the parse tree and the execution plan for every unique SQL statement. If multiple applications issue the same SQL statement, each application can access the shared SQL area. This reduces the amount of memory needed and reduces the processing-time used for parsing and execution planning.
The library cache<ref>{{cite web|url=http://www.world-class-programme.com/Oracle-Architecture-2.asp |title=Oracle architecture, the library cache section |publisher=World-class-programme.com |accessdate=2009-12-19}}</ref> stores shared SQL, caching the parse tree and the execution plan for every unique SQL statement. If multiple applications issue the same SQL statement, each application can access the shared SQL area. This reduces the amount of memory needed and reduces the processing-time used for parsing and execution planning.


====Data dictionary cache====
====Data dictionary cache====
Line 174: Line 175:
* information on space allocated and used for schema objects
* information on space allocated and used for schema objects


The Oracle instance frequently accesses the data dictionary to [[parsing|parse]] SQL statements. Oracle operation depends on ready access to the data dictionary—performance bottlenecks in the data dictionary affect all Oracle users. Because of this, database administrators must make sure that the data dictionary cache<ref>{{cite web|url=/Oracle-Architecture-2.asp |title=Oracle Architecture, data dictionary cache |publisher=World-class-programme.com |accessdate=2009-12-19}}</ref> has sufficient capacity to cache this data. Without enough memory for the data-dictionary cache, users see a severe performance degradation. Allocating sufficient memory to the shared pool where the data dictionary cache resides precludes these particular performance problem.
The Oracle instance frequently accesses the data dictionary to [[parsing|parse]] SQL statements. Oracle operation depends on ready access to the data dictionary—performance bottlenecks in the data dictionary affect all Oracle users. Because of this, database administrators must make sure that the data dictionary cache<ref>{{cite web|url=http://www.world-class-programme.com/Oracle-Architecture-2.asp |title=Oracle Architecture, data dictionary cache |publisher=World-class-programme.com |accessdate=2009-12-19}}</ref> has sufficient capacity to cache this data. Without enough memory for the data-dictionary cache, users see a severe performance degradation. Allocating sufficient memory to the shared pool where the data dictionary cache resides precludes these particular performance problem.


====Program Global Area====
====Program Global Area====
The Program Global Area<ref>{{cite web|url=/Oracle-Architecture-2.asp |title=Oracle architecture, Program Global Area section |publisher=World-class-programme.com |accessdate=2009-12-19}}
The Program Global Area<ref>{{cite web|url=http://www.world-class-programme.com/Oracle-Architecture-2.asp |title=Oracle architecture, Program Global Area section |publisher=World-class-programme.com |accessdate=2009-12-19}}
</ref><ref>
</ref><ref>
[http://download.oracle.com/docs/cd/B19306_01/mix.102/b14388/gloss-p.htm#index-PGA PGA Definition], Oracle Database Master Glossary
[http://download.oracle.com/docs/cd/B19306_01/mix.102/b14388/gloss-p.htm#index-PGA PGA Definition], Oracle Database Master Glossary
Line 194: Line 195:
The dynamic performance views (also known as "fixed views") within an Oracle database present information from virtual tables (X$ tables)<ref>
The dynamic performance views (also known as "fixed views") within an Oracle database present information from virtual tables (X$ tables)<ref>
{{cite web
{{cite web
| url =/Presentations/2002/vviews.PDF
| url = http://nyoug.org/Presentations/2002/vviews.PDF
| title = V$ views - don't leave $HOME without them
| title = V$ views - don't leave $HOME without them
| first = Mike
| first = Mike
Line 209: Line 210:
built on the basis of database memory.<ref>
built on the basis of database memory.<ref>
{{cite web
{{cite web
| url =/docs/cd/E11882_01/server.112/e10820.pdf
| url = http://download.oracle.com/docs/cd/E11882_01/server.112/e10820.pdf
| title = Overview of the Dynamic Performance Views
| title = Overview of the Dynamic Performance Views
| first = Morales
| first = Morales
Line 230: Line 231:


====Oracle processes====
====Oracle processes====
The Oracle RDBMS typically relies on a group of processes running simultaneously in the [[background process|background]] and interacting to monitor and expedite database operations. Typical operating environments might include - temporarily or permanently - some of the following individual processes (shown along with their abbreviated nomenclature):<ref>{{cite web|url=/docs/cd/B28359_01/server.111/b28318/process.htm#i16977 |title=Oracle Process architecture concepts |publisher=Download.oracle.com |accessdate=2009-12-19}}</ref>
The Oracle RDBMS typically relies on a group of processes running simultaneously in the [[background process|background]] and interacting to monitor and expedite database operations. Typical operating environments might include - temporarily or permanently - some of the following individual processes (shown along with their abbreviated nomenclature):<ref>{{cite web|url=http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/process.htm#i16977 |title=Oracle Process architecture concepts |publisher=Download.oracle.com |accessdate=2009-12-19}}</ref>


* [[Oracle Advanced Queuing|advanced queueing]] processes (Qnnn)<ref>
* [[Oracle Advanced Queuing|advanced queueing]] processes (Qnnn)<ref>
Line 237: Line 238:
| first = Christian
| first = Christian
| title = Troubleshooting Oracle Performance
| title = Troubleshooting Oracle Performance
| url =/books?id=b3DIkYO2gBQC
| url = http://books.google.com/books?id=b3DIkYO2gBQC
| accessdate = 2011-05-05
| accessdate = 2011-05-05
| series = Apress Series
| series = Apress Series
Line 270: Line 271:
| first = Norbert
| first = Norbert
| title = Secrets of the Oracle Database
| title = Secrets of the Oracle Database
| url =/books?id=g1R96D2uO7kC
| url = http://books.google.com/books?id=g1R96D2uO7kC
| accessdate = 2011-05-02
| accessdate = 2011-05-02
| series = Apress series
| series = Apress series
Line 288: Line 289:
* memory-monitor process (MMON): process for automatic problem-detection, self-tuning and statistics-gathering<ref>
* memory-monitor process (MMON): process for automatic problem-detection, self-tuning and statistics-gathering<ref>
[http://my.safaribooksonline.com/9780072263053/new_background_processes_in_10 Safaribooksonline.com]
[http://my.safaribooksonline.com/9780072263053/new_background_processes_in_10 Safaribooksonline.com]
{{cite book | last= Niemiec | first= Richard | authorlink = | title= Oracle Database 10g Performance Tuning: Tips & Techniques | url=/9780072263053/new_background_processes_in_10 | accessdate= 2009-08-12 | edition = | series = | volume = | date= 25 June 2007 | origyear = | publisher= Oracle Press | location = | isbn= 978-0-07-226305-3 | oclc = | doi = | bibcode = | id = | page= 967 | nopp = | chapter= 1.30. New Background Processes in 10''g'' | chapterurl = | quote= MMON Memory Monitor process is associated with the Automatic Workload Repository new features used for automatic problem detection and self-tuning. MMON writes out the required statistics for AWR on a scheduled basis. | ref = | laysummary = | laydate = | separator = | postscript = | lastauthoramp= }}</ref>
{{cite book | last= Niemiec | first= Richard | authorlink = | title= Oracle Database 10g Performance Tuning: Tips & Techniques | url= http://my.safaribooksonline.com/9780072263053/new_background_processes_in_10 | accessdate= 2009-08-12 | edition = | series = | volume = | date= 25 June 2007 | origyear = | publisher= Oracle Press | location = | isbn= 978-0-07-226305-3 | oclc = | doi = | bibcode = | id = | page= 967 | nopp = | chapter= 1.30. New Background Processes in 10''g'' | chapterurl = | quote= MMON Memory Monitor process is associated with the Automatic Workload Repository new features used for automatic problem detection and self-tuning. MMON writes out the required statistics for AWR on a scheduled basis. | ref = | laysummary = | laydate = | separator = | postscript = | lastauthoramp= }}</ref>
* memory-monitor light process (MMNL): gathers and stores Automatic Workload Repository (AWR) data
* memory-monitor light process (MMNL): gathers and stores Automatic Workload Repository (AWR) data
* mmon slaves (Mnnnn—M0000, M0001, etc.): background slaves of the MMON process<ref>
* mmon slaves (Mnnnn—M0000, M0001, etc.): background slaves of the MMON process<ref>
[http://my.safaribooksonline.com/9780072263053/new_background_processes_in_10 Safaribooksonline.com]{{cite book | last= Niemiec | first= Richard | authorlink = | title= Oracle Database 10g Performance Tuning: Tips & Techniques | url=/9780072263053/new_background_processes_in_10 | accessdate= 2009-08-12 | edition = | series = | volume = | date= 25 June 2007 | origyear = | publisher= Oracle Press | location = | isbn= 978-0-07-226305-3 | oclc = | doi = | bibcode = | id = | page= 967 | nopp = | chapter= 1.30. New Background Processes in 10''g'' | chapterurl = | quote= M000 These are MMON background slave (m000) processes. | ref = | laysummary = | laydate = | separator = | postscript = | lastauthoramp= }}</ref>
[http://my.safaribooksonline.com/9780072263053/new_background_processes_in_10 Safaribooksonline.com]{{cite book | last= Niemiec | first= Richard | authorlink = | title= Oracle Database 10g Performance Tuning: Tips & Techniques | url= http://my.safaribooksonline.com/9780072263053/new_background_processes_in_10 | accessdate= 2009-08-12 | edition = | series = | volume = | date= 25 June 2007 | origyear = | publisher= Oracle Press | location = | isbn= 978-0-07-226305-3 | oclc = | doi = | bibcode = | id = | page= 967 | nopp = | chapter= 1.30. New Background Processes in 10''g'' | chapterurl = | quote= M000 These are MMON background slave (m000) processes. | ref = | laysummary = | laydate = | separator = | postscript = | lastauthoramp= }}</ref>
* process-monitor process (PMON) *REQUIRED*
* process-monitor process (PMON) *REQUIRED*
* process-spawner (PSP0): spawns Oracle processes
* process-spawner (PSP0): spawns Oracle processes
Line 301: Line 302:
|author2=Steve Shaw
|author2=Steve Shaw
| title = Pro Oracle database 10g RAC on Linux: installation, administration, and performance
| title = Pro Oracle database 10g RAC on Linux: installation, administration, and performance
| url =/books?id=GjYTbJTIr54C
| url = http://books.google.com/books?id=GjYTbJTIr54C
| accessdate = 2011-05-05
| accessdate = 2011-05-05
| series = Apress Series
| series = Apress Series
Line 318: Line 319:
| first1 = Murali
| first1 = Murali
| title = Oracle 10g RAC Grid, Services & Clustering
| title = Oracle 10g RAC Grid, Services & Clustering
| url =/books?id=P9H7KRlhx_AC
| url = http://books.google.com/books?id=P9H7KRlhx_AC
| publisher = Digital Press
| publisher = Digital Press
| publication-date = 2006
| publication-date = 2006
Line 332: Line 333:
====User processes, connections and sessions====
====User processes, connections and sessions====
Oracle Database terminology distinguishes different [[computer science|computer-science]] terms in describing how end-users interact with the database:
Oracle Database terminology distinguishes different [[computer science|computer-science]] terms in describing how end-users interact with the database:
* user [[process (computing)|processes]] involve the invocation of application software<ref>{{cite web | url=/docs/cd/B19306_01/server.102/b14220/process.htm#sthref1481 | title= Process Architecture | accessdate= 2008-08-13 | last= Cyran | first= Michele |author2=Paul Lane | year= 2005 | work= Oracle Database Concepts | publisher= Oracle Corporation | quote= When a user runs an application program (such as a Pro*C program) or an Oracle tool (such as Enterprise Manager or SQL*Plus), Oracle creates a user process to run the user's application. }}</ref>
* user [[process (computing)|processes]] involve the invocation of application software<ref>{{cite web | url= http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/process.htm#sthref1481 | title= Process Architecture | accessdate= 2008-08-13 | last= Cyran | first= Michele |author2=Paul Lane | year= 2005 | work= Oracle Database Concepts | publisher= Oracle Corporation | quote= When a user runs an application program (such as a Pro*C program) or an Oracle tool (such as Enterprise Manager or SQL*Plus), Oracle creates a user process to run the user's application. }}</ref>
* a connection refers to the pathway linking a user process to an Oracle instance<ref>{{cite web | url=/docs/cd/B19306_01/server.102/b14220/process.htm#sthref1481 | title= Process Architecture | accessdate= 2008-08-13 | last= Cyran | first= Michele |author2=Paul Lane | year= 2005 | work= Oracle Database Concepts | publisher= Oracle Corporation | quote=A connection is a communication pathway between a user process and an Oracle instance. }}</ref>
* a connection refers to the pathway linking a user process to an Oracle instance<ref>{{cite web | url= http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/process.htm#sthref1481 | title= Process Architecture | accessdate= 2008-08-13 | last= Cyran | first= Michele |author2=Paul Lane | year= 2005 | work= Oracle Database Concepts | publisher= Oracle Corporation | quote=A connection is a communication pathway between a user process and an Oracle instance. }}</ref>
* [[session (computer science)|sessions]] consist of specific connections to an Oracle instance.<ref>{{cite web | url=/docs/cd/B19306_01/server.102/b14220/process.htm#sthref1481 | title= Process Architecture | accessdate= 2008-08-13 | last= Cyran | first= Suraj | first= Michele |author2=Paul Lane | year= 2005 | work= Oracle Database Concepts | publisher= Oracle Corporation | quote= A session is a specific connection of a user to an Oracle instance through a user process }}</ref> Each session within an instance has a session identifier or "SID"<ref>{{cite web | url =/docs/cd/B28359_01/server.111/b28320/dynviews_3016.htm | title = V$SESSION | accessdate = 2008-11-17 | author = | last = Morales | first = Tony | authorlink = | year = 2008 | work = Oracle Database Reference 11g Release 1 (11.1) | publisher = Oracle | location = | pages = | doi = | archiveurl = | archivedate = | quote = }}</ref> (distinct from the system-identifier SID).
* [[session (computer science)|sessions]] consist of specific connections to an Oracle instance.<ref>{{cite web | url= http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/process.htm#sthref1481 | title= Process Architecture | accessdate= 2008-08-13 | last= Cyran | first= Suraj | first= Michele |author2=Paul Lane | year= 2005 | work= Oracle Database Concepts | publisher= Oracle Corporation | quote= A session is a specific connection of a user to an Oracle instance through a user process }}</ref> Each session within an instance has a session identifier or "SID"<ref>{{cite web | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28320/dynviews_3016.htm | title = V$SESSION | accessdate = 2008-11-17 | author = | last = Morales | first = Tony | authorlink = | year = 2008 | work = Oracle Database Reference 11g Release 1 (11.1) | publisher = Oracle | location = | pages = | doi = | archiveurl = | archivedate = | quote = }}</ref> (distinct from the system-identifier SID).


===Concurrency and locking===
===Concurrency and locking===
Oracle databases control simultaneous access to data resources with [[lock (computer science)|locks]] (alternatively documented as "enqueues").<ref>
Oracle databases control simultaneous access to data resources with [[lock (computer science)|locks]] (alternatively documented as "enqueues").<ref>
{{cite web | first = Immanuel | last = Chan | title = Glossary | url =/docs/cd/B28359_01/server.111/b28274/glossary.htm?type=popup#sthref1649 | archiveurl = | work = Oracle Database Performance Tuning Guide 11g Release 1 (11.1) | publisher = Oracle Corporation |date= July 2008 | archivedate = | accessdate = 2009-04-29 | quote = enqueue[:] This is another term for a lock. }}</ref>
{{cite web | first = Immanuel | last = Chan | title = Glossary | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28274/glossary.htm?type=popup#sthref1649 | archiveurl = | work = Oracle Database Performance Tuning Guide 11g Release 1 (11.1) | publisher = Oracle Corporation |date= July 2008 | archivedate = | accessdate = 2009-04-29 | quote = enqueue[:] This is another term for a lock. }}</ref>
The databases also utilize "latches" - low-level serialization mechanisms to protect shared data structures in the System Global Area.<ref>{{cite web | first = | last = | author = | authorlink = | title = Oracle Database Master Glossary: 11''g'' Release 1 (11.1) | url =/docs/cd/B28359_01/mix.111/b14388/gloss-l.htm | archiveurl = | work = | publisher = Oracle Corporation | location = | doi = | archivedate = | accessdate = 2009-04-24 | quote = latch[:] A simple, low-level serialization mechanism to protect shared data structures in the System Global Area. }}</ref>
The databases also utilize "latches" - low-level serialization mechanisms to protect shared data structures in the System Global Area.<ref>{{cite web | first = | last = | author = | authorlink = | title = Oracle Database Master Glossary: 11''g'' Release 1 (11.1) | url = http://download.oracle.com/docs/cd/B28359_01/mix.111/b14388/gloss-l.htm | archiveurl = | work = | publisher = Oracle Corporation | location = | doi = | archivedate = | accessdate = 2009-04-24 | quote = latch[:] A simple, low-level serialization mechanism to protect shared data structures in the System Global Area. }}</ref>


===Configuration===
===Configuration===
Database administrators control many of the tunable variations in an Oracle instance by means of values in a parameter file.<ref>{{cite web | first = Richard | last = Strohm | author = | authorlink = |author2=et al. | title = Parameter Files | url =/docs/cd/B28359_01/server.111/b28318/intro.htm#sthref23 | archiveurl = | work = Oracle Database Concepts 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= October 2008 | archivedate = | accessdate = 2009-07-14 | quote = Parameter files contain a list of configuration parameters for that instance and database.}}
Database administrators control many of the tunable variations in an Oracle instance by means of values in a parameter file.<ref>{{cite web | first = Richard | last = Strohm | author = | authorlink = |author2=et al. | title = Parameter Files | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/intro.htm#sthref23 | archiveurl = | work = Oracle Database Concepts 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= October 2008 | archivedate = | accessdate = 2009-07-14 | quote = Parameter files contain a list of configuration parameters for that instance and database.}}
</ref>
</ref>
This file in its ASCII default form ("pfile") normally has a name of the format <code>init<SID-name>.ora</code>. The default binary equivalent server parameter file ("spfile") (dynamically reconfigurable to some extent)<ref>{{cite web | first = Richard | last = Strohm | author = | authorlink = |author2=et al. | title = Initialization Parameter Files and Server Parameter Files | url =/docs/cd/B28359_01/server.111/b28318/startup.htm#i9633 | archiveurl = | work = Oracle Database Concepts 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= October 2008 | archivedate = | accessdate = 2009-07-14 | quote = }}</ref>
This file in its ASCII default form ("pfile") normally has a name of the format <code>init<SID-name>.ora</code>. The default binary equivalent server parameter file ("spfile") (dynamically reconfigurable to some extent)<ref>{{cite web | first = Richard | last = Strohm | author = | authorlink = |author2=et al. | title = Initialization Parameter Files and Server Parameter Files | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/startup.htm#i9633 | archiveurl = | work = Oracle Database Concepts 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= October 2008 | archivedate = | accessdate = 2009-07-14 | quote = }}</ref>
defaults to the format <code>spfile<SID-name>.ora</code>. Within an SQL-based environment, the views <code>V$PARAMETER</code><ref>{{cite web | first = Tony | last = Morales | author = | authorlink = |author2=et al. | title = V$PARAMETER | url =/docs/cd/B28359_01/server.111/b28320/dynviews_2.htm#insertedID85 | archiveurl = | work = Oracle Database Reference 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= April 2009 | archivedate = | accessdate = 2009-07-14 | quote = V$PARAMETER displays information about the initialization parameters that are currently in effect for the session. }}</ref>
defaults to the format <code>spfile<SID-name>.ora</code>. Within an SQL-based environment, the views <code>V$PARAMETER</code><ref>{{cite web | first = Tony | last = Morales | author = | authorlink = |author2=et al. | title = V$PARAMETER | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28320/dynviews_2.htm#insertedID85 | archiveurl = | work = Oracle Database Reference 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= April 2009 | archivedate = | accessdate = 2009-07-14 | quote = V$PARAMETER displays information about the initialization parameters that are currently in effect for the session. }}</ref>
and <code>V$SPPARAMETER</code><ref>{{cite web | first = Tony | last = Morales | author = | authorlink = |author2=et al. | title = V$SPPARAMETER | url =/docs/cd/B28359_01/server.111/b28320/dynviews_3.htm#insertedID41 | archiveurl = | work = Oracle Database Reference 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= April 2009 | archivedate = | accessdate = 2009-07-14 | quote = V$SPPARAMETER displays information about the contents of the server parameter file. }}</ref>
and <code>V$SPPARAMETER</code><ref>{{cite web | first = Tony | last = Morales | author = | authorlink = |author2=et al. | title = V$SPPARAMETER | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28320/dynviews_3.htm#insertedID41 | archiveurl = | work = Oracle Database Reference 11g Release 1 (11.1) | publisher = Oracle Corporation | location = | page = | pages = | doi = |date= April 2009 | archivedate = | accessdate = 2009-07-14 | quote = V$SPPARAMETER displays information about the contents of the server parameter file. }}</ref>
give access to reading parameter values.
give access to reading parameter values.


Line 359: Line 360:
| authorlink2 =
| authorlink2 =
| title = OCP: Oracle 10g New Features for Administrators Study Guide: Exam 1Z0-040
| title = OCP: Oracle 10g New Features for Administrators Study Guide: Exam 1Z0-040
| url =/books?id=XX8qSa1x0G4C
| url = http://books.google.com/books?id=XX8qSa1x0G4C
| accessdate = 2013-10-10
| accessdate = 2013-10-10
| year = 2006
| year = 2006
Line 375: Line 376:
| author1-link =
| author1-link =
| title = High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability
| title = High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability
| url =/books?id=JD4-pBV6Bf4C
| url = http://books.google.com/books?id=JD4-pBV6Bf4C
| publisher = John Wiley & Sons
| publisher = John Wiley & Sons
| publication-date = 2002
| publication-date = 2002
Line 395: Line 396:
| editor1-first = Ioan-Lucian
| editor1-first = Ioan-Lucian
| title = Manageability comparison: Oracle Database 10g and Oracle9i Database
| title = Manageability comparison: Oracle Database 10g and Oracle9i Database
| url =/annals/pdf/Annals-2008-Part1.pdf
| url = http://www.upet.ro/annals/pdf/Annals-2008-Part1.pdf
| journal = Annals of the University of Petroşani, Economics
| journal = Annals of the University of Petroşani, Economics
| location = Petroşani, Romania
| location = Petroşani, Romania
Line 415: Line 416:


==Internationalization==
==Internationalization==
Oracle Database software comes in 63 language-versions (including regional variations such as British English and American English). Variations between versions cover the names of days and months, abbreviations, time-symbols (such as A.M. and A.D.), and sorting.<ref name="titleLocale%2520Data">
Oracle Database software comes in 63 language-versions (including regional variations such as British English and American English). Variations between versions cover the names of days and months, abbreviations, time-symbols (such as A.M. and A.D.), and sorting.<ref name="titleLocale Data">
{{cite web |url=/docs/cd/B19306_01/server.102/b14225/applocaledata.htm#i634428 |title=Locale Languages |accessdate=2008-02-26 }}</ref>
{{cite web |url=http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/applocaledata.htm#i634428 |title=Locale Languages |accessdate=2008-02-26 }}</ref>


Oracle Corporation has translated Oracle Database error-messages into Arabic, Catalan, Chinese, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, Swedish, Thai and Turkish.<ref name="titleMessages%2520Data">{{cite web |url=/docs/cd/B19306_01/server.102/b14225/applocaledata.htm#i634673 | title=Error Message Languages |accessdate=2008-02-26 }}</ref>
Oracle Corporation has translated Oracle Database error-messages into Arabic, Catalan, Chinese, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, Swedish, Thai and Turkish.<ref name="titleMessages Data">{{cite web |url=http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/applocaledata.htm#i634673 | title=Error Message Languages |accessdate=2008-02-26 }}</ref>
<!-- could not find list of documentation translations yet-->
<!-- could not find list of documentation translations yet-->


Oracle Corporation provides database developers with tools and mechanisms for producing internationalized database applications: referred to internally as "Globalization".<ref>
Oracle Corporation provides database developers with tools and mechanisms for producing internationalized database applications: referred to internally as "Globalization".<ref>
{{cite web | url = http://arjudba.blogspot.com | title = A complete RMAN shell script backup for Oracle 8i, 9i, 10g, 11g | accessdate = 2010-11-07 | author = | last = Arju | first = Md. Abdul | authorlink = |author2=et al. |date= November 2010
{{cite web | url =/ref><ref>
| work = A complete RMAN shell script backup for Oracle 8i, 9i, 10g, 11g
{{cite web | url =/docs/cd/B28359_01/server.111/b28298/ch1overview.htm#sthref8 | title = Overview of Globalization Support | accessdate = 2009-02-16 | author = | last = Shea | first = Cathy | authorlink = |author2=et al. |date= September 2007 | work = Oracle Database Globalization Support Guide 11g Release 1 (11.1) | publisher = [[Oracle Corporation]] | location = | pages = | doi = | archiveurl = | archivedate = | dateformat = | quote = In the past, Oracle referred to globalization support capabilities as National Language Support (NLS) features. NLS is actually a subset of globalization support. NLS is the ability to choose a national language and store data in a specific character set. Globalization support enables you to develop multilingual applications and software products that can be accessed and run from anywhere in the world simultaneously. }}
| publisher = [[Md.Abdul Arju]] | dateformat =
| quote = A complete RMAN backup shell script that will work regardless of most used oracle version as well as most used unix operating system. In this script it is assumed that you are using recovery catalog for you rman backup.
}}
</ref><ref>
{{cite web | url = http://download.oracle.com/docs/cd/B28359_01/server.111/b28298/ch1overview.htm#sthref8 | title = Overview of Globalization Support | accessdate = 2009-02-16 | author = | last = Shea | first = Cathy | authorlink = |author2=et al. |date= September 2007 | work = Oracle Database Globalization Support Guide 11g Release 1 (11.1) | publisher = [[Oracle Corporation]] | location = | pages = | doi = | archiveurl = | archivedate = | dateformat = | quote = In the past, Oracle referred to globalization support capabilities as National Language Support (NLS) features. NLS is actually a subset of globalization support. NLS is the ability to choose a national language and store data in a specific character set. Globalization support enables you to develop multilingual applications and software products that can be accessed and run from anywhere in the world simultaneously. }}
</ref>
</ref>


Line 435: Line 441:
* 1983: The company released Oracle version 3, which it had re-written using the [[C (programming language)|C programming language]], and which supported <code>[[Commit (data management)|COMMIT]]</code> and <code>[[Rollback (data management)|ROLLBACK]]</code> functionality for transactions. Version 3 extended platform support from the existing [[Digital Equipment Corporation|Digital]] [[VAX/VMS]] systems to include [[Unix]] environments.<ref name="autogenerated2" />
* 1983: The company released Oracle version 3, which it had re-written using the [[C (programming language)|C programming language]], and which supported <code>[[Commit (data management)|COMMIT]]</code> and <code>[[Rollback (data management)|ROLLBACK]]</code> functionality for transactions. Version 3 extended platform support from the existing [[Digital Equipment Corporation|Digital]] [[VAX/VMS]] systems to include [[Unix]] environments.<ref name="autogenerated2" />
* 1984: Oracle Corporation released Oracle version 4, which supported [[consistency model|read-consistency]].<ref>{{cite web
* 1984: Oracle Corporation released Oracle version 4, which supported [[consistency model|read-consistency]].<ref>{{cite web
| url =/timeline/oracle/
| url = http://oracle.com.edgesuite.net/timeline/oracle/
| title = Oracle Timeline
| title = Oracle Timeline
| quote = Oracle Version 4 is released with a new feature called "read consistency," which assures that a query will have a consistent set of data during execution.
| quote = Oracle Version 4 is released with a new feature called "read consistency," which assures that a query will have a consistent set of data during execution.
| accessdate = 21 March 2013
| accessdate = 21 March 2013
}}</ref> In October it also released the first Oracle for the [[IBM PC]].<ref name="webster19841113">{{cite news | url=/books?id=-Ukz6hjZEA4C&lpg=PA12&pg=PA57#v=onepage&q&f=true | title=PC Relational Database? New Answer Is Oracle | work=PC Magazine | date=1984-11-13 | accessdate=25 October 2013 | author=Webster, Robin | pages=57}}</ref>
}}</ref> In October it also released the first Oracle for the [[IBM PC]].<ref name="webster19841113">{{cite news | url=http://books.google.com/books?id=-Ukz6hjZEA4C&lpg=PA12&pg=PA57#v=onepage&q&f=true | title=PC Relational Database? New Answer Is Oracle | work=PC Magazine | date=1984-11-13 | accessdate=25 October 2013 | author=Webster, Robin | pages=57}}</ref>
* 1985: Oracle Corporation released Oracle version 5, which supported the [[client–server model]]—a sign of networks becoming more widely available in the mid-1980s.
* 1985: Oracle Corporation released Oracle version 5, which supported the [[client–server model]]—a sign of networks becoming more widely available in the mid-1980s.
* 1986: Oracle version 5.1 started supporting [[distributed computing|distributed]] queries.
* 1986: Oracle version 5.1 started supporting [[distributed computing|distributed]] queries.
Line 452: Line 458:
| first = Guy
| first = Guy
| title = Oracle SQL high-performance tuning
| title = Oracle SQL high-performance tuning
| url =/books?id=bh6CLbeKQ4QC
| url = http://books.google.com/books?id=bh6CLbeKQ4QC
| accessdate = 2011-01-20
| accessdate = 2011-01-20
| edition = 2
| edition = 2
Line 472: Line 478:
| authorlink =
| authorlink =
| title = Oracle SQL*Plus: The Definitive Guide
| title = Oracle SQL*Plus: The Definitive Guide
| url =/books?id=aDHKcmoCTPEC
| url = http://books.google.com/books?id=aDHKcmoCTPEC
| accessdate = 2012-08-03
| accessdate = 2012-08-03
| edition = 2
| edition = 2
Line 487: Line 493:
* 2005: Oracle Database 10.2.0.1—also known as Oracle Database 10''g'' Release 2 (10''g''R2)—appeared.
* 2005: Oracle Database 10.2.0.1—also known as Oracle Database 10''g'' Release 2 (10''g''R2)—appeared.
* 2006: Oracle Corporation announces [[Unbreakable Linux]]<ref name="autogenerated2" /> and acquires i-flex
* 2006: Oracle Corporation announces [[Unbreakable Linux]]<ref name="autogenerated2" /> and acquires i-flex
* 2007: Oracle Database 10''g'' release 2 sets a new [[world record]] TPC-H 3000 GB [[benchmark (computing)|benchmark]] result<ref>{{cite web |url=/press-releases/oracle-tpc-h-record-060806/ |title=Oracle Database 10''g'' Sets New Record for TPC-H Three TB Benchmark |accessdate=2008-01-31 |work= }}</ref>
* 2007: Oracle Database 10''g'' release 2 sets a new [[world record]] TPC-H 3000 GB [[benchmark (computing)|benchmark]] result<ref>{{cite web |url=http://www.itmanagement.com/press-releases/oracle-tpc-h-record-060806/ |title=Oracle Database 10''g'' Sets New Record for TPC-H Three TB Benchmark |accessdate=2008-01-31 |work= }}</ref>
* 2007: Oracle Corporation released Oracle Database 11''g'' for [[Linux]] and for [[Microsoft Windows]].
* 2007: Oracle Corporation released Oracle Database 11''g'' for [[Linux]] and for [[Microsoft Windows]].
* 2008: Oracle Corporation acquires [[BEA Systems]].
* 2008: Oracle Corporation acquires [[BEA Systems]].
Line 499: Line 505:
| publisher = Oracle Corporation
| publisher = Oracle Corporation
| location = Redwood Shores, California
| location = Redwood Shores, California
| url =/us/corporate/press/1967380
| url = http://www.oracle.com/us/corporate/press/1967380
| accessdate = 2013-09-09
| accessdate = 2013-09-09
| quote = Oracle Database 12c is a next-generation database [...] providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform.
| quote = Oracle Database 12c is a next-generation database [...] providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform.
Line 510: Line 516:
| first1 = Emre
| first1 = Emre
| title = Oracle Data Guard 11gR2 Administration Beginner's Guide
| title = Oracle Data Guard 11gR2 Administration Beginner's Guide
| url =/books?id=bnx9_MkBimcC
| url = http://books.google.com/books?id=bnx9_MkBimcC
| publisher = Packt Publishing Ltd
| publisher = Packt Publishing Ltd
| publication-date = 2013
| publication-date = 2013
Line 523: Line 529:


===Version numbering===
===Version numbering===
Oracle products follow a custom release numbering and naming convention. With the Oracle RDBMS 10''g'' release, Oracle Corporation began using the "10''g''" label in all versions of its major products, although some sources refer to Oracle Applications Release 11''i'' as Oracle 11''i''.{{Clarify|date=August 2011}} The suffixes "i", "g" and "c" do not actually represent a low-order part of the version number, as letters typically represent in software industry version numbering; that is, there is no predecessor version of Oracle 10''g'' called Oracle 10''f''. Instead, the letters stand for "internet", "grid" and "cloud", respectively.<ref name="theregister%252Eco%252Euk">theregister.co.uk: [http://www.theregister.co.uk/2012/09/20/oracle_openworld_preview_q1_f2012_numbers/ Oracle gears up for infrastructure cloud and 12c database launches • The Register]</ref> Consequently many simply drop the "g" or "i" suffix when referring to specific versions of an Oracle product.
Oracle products follow a custom release numbering and naming convention. With the Oracle RDBMS 10''g'' release, Oracle Corporation began using the "10''g''" label in all versions of its major products, although some sources refer to Oracle Applications Release 11''i'' as Oracle 11''i''.{{Clarify|date=August 2011}} The suffixes "i", "g" and "c" do not actually represent a low-order part of the version number, as letters typically represent in software industry version numbering; that is, there is no predecessor version of Oracle 10''g'' called Oracle 10''f''. Instead, the letters stand for "internet", "grid" and "cloud", respectively.<ref name="theregister.co.uk">theregister.co.uk: [http://www.theregister.co.uk/2012/09/20/oracle_openworld_preview_q1_f2012_numbers/ Oracle gears up for infrastructure cloud and 12c database launches • The Register]</ref> Consequently many simply drop the "g" or "i" suffix when referring to specific versions of an Oracle product.


Major database-related products and some of their versions include:
Major database-related products and some of their versions include:
Line 560: Line 566:
Over and above the different versions of the Oracle database management software developed over time, Oracle Corporation subdivides its product into varying "editions" - apparently for marketing and license-tracking reasons. (Do not confuse the marketing "editions" with the internal virtual versioning "editions" introduced with Oracle 11.2).<ref>
Over and above the different versions of the Oracle database management software developed over time, Oracle Corporation subdivides its product into varying "editions" - apparently for marketing and license-tracking reasons. (Do not confuse the marketing "editions" with the internal virtual versioning "editions" introduced with Oracle 11.2).<ref>
{{cite web
{{cite web
| url =/technology/deploy/availability/pdf/edition_based_redefinition.pdf
| url = http://www.oracle.com/technology/deploy/availability/pdf/edition_based_redefinition.pdf
| title = Edition-Based Redefinition
| title = Edition-Based Redefinition
| first = Bryn
| first = Bryn
Line 580: Line 586:
* Standard Edition One,<ref>[http://www.oracle.com/database/std_one.html Standard Edition One]</ref> (SE1<ref>
* Standard Edition One,<ref>[http://www.oracle.com/database/std_one.html Standard Edition One]</ref> (SE1<ref>
{{cite web
{{cite web
| url =/12391/1/MPRA_paper_12391.pdf
| url = http://mpra.ub.uni-muenchen.de/12391/1/MPRA_paper_12391.pdf
| title = Technologies solutions and Oracle instruments used in the accomplishment of executive informatics systems (EIS)
| title = Technologies solutions and Oracle instruments used in the accomplishment of executive informatics systems (EIS)
| first = Vatuiu
| first = Vatuiu
Line 595: Line 601:
* Express Edition<ref>
* Express Edition<ref>
{{cite web
{{cite web
| url =/technology/products/database/xe/index.html
| url = http://www.oracle.com/technology/products/database/xe/index.html
| title = Oracle Database 10''g'' Express Edition
| title = Oracle Database 10''g'' Express Edition
| work = Oracle Technology Network
| work = Oracle Technology Network
Line 604: Line 610:
</ref> ("Oracle Database XE")
</ref> ("Oracle Database XE")
** The first Express Edition, introduced in 2005, offered Oracle 10''g'' free to distribute on Windows and Linux platforms. It had a footprint of only 150 MB, had a limitation to a maximum of 4 GB of user data<ref>{{cite web
** The first Express Edition, introduced in 2005, offered Oracle 10''g'' free to distribute on Windows and Linux platforms. It had a footprint of only 150 MB, had a limitation to a maximum of 4 GB of user data<ref>{{cite web
|url =/doc/oracle_express_edition.htm
|url = http://www.georeference.org/doc/oracle_express_edition.htm
|title = Oracle Express Edition
|title = Oracle Express Edition
|accessdate = 2013-02-21
|accessdate = 2013-02-21
|quote = [...] this topic uses Oracle® 10g Express Edition. [...] User data cannot exceed 4 gigabytes in size (in addition to Oracle system data).
|quote = [...] this topic uses Oracle® 10g Express Edition. [...] User data cannot exceed 4 gigabytes in size (in addition to Oracle system data).
}}</ref> and could use only a single CPU. Although it could install on a server with any amount of memory, it used a maximum of 1 GB.<ref>{{cite web|url=/technology/products/database/xe/pdf/dbxe_faq.pdf |title=Oracle Data Sheet |format=PDF |accessdate=2009-12-19}}</ref> Support for this version came exclusively through on-line forums and not through Oracle support.
}}</ref> and could use only a single CPU. Although it could install on a server with any amount of memory, it used a maximum of 1 GB.<ref>{{cite web|url=http://www.oracle.com/technology/products/database/xe/pdf/dbxe_faq.pdf |title=Oracle Data Sheet |format=PDF |accessdate=2009-12-19}}</ref> Support for this version came exclusively through on-line forums and not through Oracle support.
** Oracle 11g Express Edition, released by Oracle Corporation on 24 September 2011,<ref>
** Oracle 11g Express Edition, released by Oracle Corporation on 24 September 2011,<ref>
{{cite book
{{cite book
Line 614: Line 620:
| first = Richard
| first = Richard
| title = Oracle Database 11g Release 2 Performance Tuning Tips & Techniques
| title = Oracle Database 11g Release 2 Performance Tuning Tips & Techniques
| url =/books?id=9gZ2eze4190C
| url = http://books.google.com/books?id=9gZ2eze4190C
| accessdate = 2013-02-20
| accessdate = 2013-02-20
| series = Osborne [[Oracle Press]]
| series = Osborne [[Oracle Press]]
Line 629: Line 635:
| last = Kanaracus
| last = Kanaracus
| authorlink =
| authorlink =
| url =/s/article/9215470/Oracle_releases_beta_for_Express_Edition_of_11g_database
| url = http://www.computerworld.com/s/article/9215470/Oracle_releases_beta_for_Express_Edition_of_11g_database
| newspaper = Computerworld
| newspaper = Computerworld
| publisher = Computerworld Inc.
| publisher = Computerworld Inc.
Line 646: Line 652:
| title = Oracle APEX und Oracle XE in der Praxis
| title = Oracle APEX und Oracle XE in der Praxis
| trans_title = Oracle APEX and Oracle XE in practice
| trans_title = Oracle APEX and Oracle XE in practice
| url =/books?id=jXaEiICWcCUC
| url = http://books.google.com/books?id=jXaEiICWcCUC
| language = German
| language = German
| publisher = Hüthig Jehle Rehm
| publisher = Hüthig Jehle Rehm
Line 656: Line 662:
}}
}}
</ref>
</ref>
* Oracle Database Lite,<ref>{{cite web | first = | last = | author = | authorlink = | title = Oracle Database Lite 10''g'' | url =/database/lite_edition.html | archiveurl = | work = oracle.com | publisher = Oracle Corporation | location = | page = | pages = | doi = | archivedate = | accessdate = 2009-06-23 | quote = [...] for developing, deploying and managing applications for mobile and embedded environments. }}</ref> intended for running on [[mobile device]]s. The embedded<ref>
* Oracle Database Lite,<ref>{{cite web | first = | last = | author = | authorlink = | title = Oracle Database Lite 10''g'' | url = http://www.oracle.com/database/lite_edition.html | archiveurl = | work = oracle.com | publisher = Oracle Corporation | location = | page = | pages = | doi = | archivedate = | accessdate = 2009-06-23 | quote = [...] for developing, deploying and managing applications for mobile and embedded environments. }}</ref> intended for running on [[mobile device]]s. The embedded<ref>
{{cite book
{{cite book
|first1= Rick
|first1= Rick
Line 668: Line 674:
|author3-link=
|author3-link=
|title= Oracle Essentials: Oracle Database 11g
|title= Oracle Essentials: Oracle Database 11g
|url=/?id=EmvWP1vgTsYC
|url= http://books.google.com/?id=EmvWP1vgTsYC
|accessdate= 2010-06-08
|accessdate= 2010-06-08
|edition= 4
|edition= 4
Line 697: Line 703:
* [[HP-UX]] [[PA-RISC]] (64-bit)
* [[HP-UX]] [[PA-RISC]] (64-bit)
* [[AIX]] ([[PPC64]])
* [[AIX]] ([[PPC64]])
* [[OpenVMS]] ([[IA64]]) <ref>{{cite web | url =/TUD2012/Oracle_Database_on_VMS_and_Rdb_Product_Update-Public.pdf | title = Oracle Rdb and Oracle Database on OpenVMS Product Update | publisher = Kevin Duffy, Senior Director of Software Development, Oracle Corporation | accessdate = November 2012 }}</ref>
* [[OpenVMS]] ([[IA64]]) <ref>{{cite web | url = http://de.openvms.org/TUD2012/Oracle_Database_on_VMS_and_Rdb_Product_Update-Public.pdf | title = Oracle Rdb and Oracle Database on OpenVMS Product Update | publisher = Kevin Duffy, Senior Director of Software Development, Oracle Corporation | accessdate = November 2012 }}</ref>


In 2011, Oracle Corporation announced the availability of Oracle Database Appliance, a pre-built, pre-tuned, highly available clustered database server built using two SunFire X86 servers and direct attached storage.
In 2011, Oracle Corporation announced the availability of Oracle Database Appliance, a pre-built, pre-tuned, highly available clustered database server built using two SunFire X86 servers and direct attached storage.
Line 704: Line 710:
Hybrid Columnar Compression for more efficient storage.<ref>
Hybrid Columnar Compression for more efficient storage.<ref>
{{cite web
{{cite web
|url =/us/products/servers-storage/storage/nas/hybrid-columnar-compression-ds-1405370.pdf
|url = http://www.oracle.com/us/products/servers-storage/storage/nas/hybrid-columnar-compression-ds-1405370.pdf
|title = Hybrid Columnar Compression And Oracle Storage
|title = Hybrid Columnar Compression And Oracle Storage
|last1 = Martin
|last1 = Martin
Line 722: Line 728:
* Oracle Database Firewall<ref>
* Oracle Database Firewall<ref>
{{cite web
{{cite web
| url =/secerno/index.html
| url = http://www.oracle.com/secerno/index.html
| title = Oracle and Secerno
| title = Oracle and Secerno
| year = 2010
| year = 2010
Line 731: Line 737:
</ref> analyzes database traffic on a network to prevent threats such as [[SQL injection]].<ref>
</ref> analyzes database traffic on a network to prevent threats such as [[SQL injection]].<ref>
{{cite web
{{cite web
| url =/technetwork/database/database-firewall/overview/index.html
| url = http://www.oracle.com/technetwork/database/database-firewall/overview/index.html
| title = Oracle Database Fiorewall: Frequently Asked Questions
| title = Oracle Database Fiorewall: Frequently Asked Questions
| work = Oracle Technology Network
| work = Oracle Technology Network
Line 750: Line 756:
|author2=Charles Kim
|author2=Charles Kim
| title = Oracle database 11g: new features for DBAs and developers
| title = Oracle database 11g: new features for DBAs and developers
| url =/books?id=14ZH0eZV6G8C
| url = http://books.google.com/books?id=14ZH0eZV6G8C
| accessdate = 2011-05-10
| accessdate = 2011-05-10
| series = Expert's voice in Oracle
| series = Expert's voice in Oracle
Line 773: Line 779:
|author2=Rama Velpuri
|author2=Rama Velpuri
| title = Oracle9i for Windows handbook
| title = Oracle9i for Windows handbook
| url =/books?id=L8K5BAt7kzcC
| url = http://books.google.com/books?id=L8K5BAt7kzcC
| accessdate = 2011-01-26
| accessdate = 2011-01-26
| edition = 2
| edition = 2
Line 786: Line 792:
</ref><ref>
</ref><ref>
{{cite web
{{cite web
| url =/docs/cd/B14099_19/manage.1012/b16241/Management_Pack_Access.htm
| url = http://download.oracle.com/docs/cd/B14099_19/manage.1012/b16241/Management_Pack_Access.htm
| title = Oracle Database Change Management Pack
| title = Oracle Database Change Management Pack
| first = Phil
| first = Phil
Line 800: Line 806:
* [[Oracle Application Express]], a no-cost environment for database-oriented software-development<ref>
* [[Oracle Application Express]], a no-cost environment for database-oriented software-development<ref>
{{cite web
{{cite web
|url =/i/index.html
|url = http://apex.oracle.com/i/index.html
|title = Oracle Application Express 4.1
|title = Oracle Application Express 4.1
|work = apex.oracle.com
|work = apex.oracle.com
Line 811: Line 817:
* Oracle Multitenant - a container database holding pluggable databases (PDBs) (from 12c)<ref>
* Oracle Multitenant - a container database holding pluggable databases (PDBs) (from 12c)<ref>
{{cite web
{{cite web
|url =/technetwork/database/multitenant/overview/index.html
|url = http://www.oracle.com/technetwork/database/multitenant/overview/index.html
|title = Oracle Multitenant
|title = Oracle Multitenant
|publisher = [[Oracle Corporation]]
|publisher = [[Oracle Corporation]]
Line 820: Line 826:
* [http://www.oracle.com/solutions/business_intelligence/olap.html Oracle OLAP] (adds [[Online analytical processing|analytical processing]])
* [http://www.oracle.com/solutions/business_intelligence/olap.html Oracle OLAP] (adds [[Online analytical processing|analytical processing]])
* Oracle Programmer (provides programmatic access to Oracle databases via [[precompiler]]s, interfaces and [[language binding|bindings]])<ref>See download.oracle.com/docs/cd/B28359_01/license.111/b28287/options.htm#CIHBDGAD</ref>
* Oracle Programmer (provides programmatic access to Oracle databases via [[precompiler]]s, interfaces and [[language binding|bindings]])<ref>See download.oracle.com/docs/cd/B28359_01/license.111/b28287/options.htm#CIHBDGAD</ref>
* [[Oracle Real Application Testing]] (new at version 11''g'')—including Database Replay (for testing workloads) and SQL Performance Analyzer (SPA) (for preserving SQL efficiency in changing environments)<ref>{{cite web | url=/technology/products/manageability/database/pdf/wp07/owp_real_application_testing_11g.pdf | title= Real Application Testing Overview | accessdate= 2008-05-19 |date=August 2007 | publisher= Oracle Corporation }}</ref>
* [[Oracle Real Application Testing]] (new at version 11''g'')—including Database Replay (for testing workloads) and SQL Performance Analyzer (SPA) (for preserving SQL efficiency in changing environments)<ref>{{cite web | url= http://www.oracle.com/technology/products/manageability/database/pdf/wp07/owp_real_application_testing_11g.pdf | title= Real Application Testing Overview | accessdate= 2008-05-19 |date=August 2007 | publisher= Oracle Corporation }}</ref>
* [[Oracle Spatial]] and Graph (includes 2D,3D and Raster geospatial data types, indexes, and spatial analytics and data models used in business applications and [[geographic information systems]] (GIS)) as well as World Wide Web Consortium [[Resource Description Framework]] (RDF) graph management and analysis
* [[Oracle Spatial]] and Graph (includes 2D,3D and Raster geospatial data types, indexes, and spatial analytics and data models used in business applications and [[geographic information systems]] (GIS)) as well as World Wide Web Consortium [[Resource Description Framework]] (RDF) graph management and analysis
* [http://www.oracle.com/technetwork/database/enterprise-edition/index-098492.html Oracle Text] (standard SQL to index, search, and analyze text and documents stored in the Oracle database) <ref>{{cite web | url =/ref>
* [http://www.oracle.com/technetwork/database/enterprise-edition/index-098492.html Oracle Text] (standard SQL to index, search, and analyze text and documents stored in the Oracle database) <ref>{{cite web | url = http://shaharear.blogspot.com | title = installation of Oracle Text on 10g | accessdate = 2011-12-08 | author = | last = Shaharear | first = Mohammad Hasan | authorlink = |author2=et al. |date= December 2008 | work = installation of Oracle Text on 10g
| publisher = [[Mohammad Hasan Shaharear]] | location = | pages = | doi = | archiveurl = | archivedate = | dateformat = | quote = installation of Oracle Text on 10g }}</ref>
* [http://www.oracle.com/technetwork/database/features/xmldb/index.html Oracle XML DB], a no-cost component in each edition of the database that provides high-performance technology for storing and retrieving native XML
* [http://www.oracle.com/technetwork/database/features/xmldb/index.html Oracle XML DB], a no-cost component in each edition of the database that provides high-performance technology for storing and retrieving native XML
* [[Oracle Warehouse Builder]] (in various forms and sub-options)
* [[Oracle Warehouse Builder]] (in various forms and sub-options)
Line 833: Line 840:
{{Expand list|date=August 2008}}
{{Expand list|date=August 2008}}


In most cases, using these options entails extra licensing costs.<ref>See "Term licenses" at http://oraclestore.oracle.com/ for various markets/countries.</ref><ref>{{cite web|title=The Licensing Of Oracle Technology Products|url=/references/oracle/the-licensing-of-oracle-technology-products-compliance-metrics-licensing-restrictions/|publisher=OMT-CO Operations Management Technology Consulting GmbH|accessdate=26 June 2013}}</ref>
In most cases, using these options entails extra licensing costs.<ref>See "Term licenses" at http://oraclestore.oracle.com/ for various markets/countries.</ref><ref>{{cite web|title=The Licensing Of Oracle Technology Products|url=http://omtco.eu/references/oracle/the-licensing-of-oracle-technology-products-compliance-metrics-licensing-restrictions/|publisher=OMT-CO Operations Management Technology Consulting GmbH|accessdate=26 June 2013}}</ref>


===Suites===
===Suites===
Line 842: Line 849:
* [[Oracle E-Business Suite]] collects together applications for [[enterprise resource planning]] (including [[Oracle Financials]]), [[customer relationship management]] and [[human resources]] management ([[Oracle HR]]).
* [[Oracle E-Business Suite]] collects together applications for [[enterprise resource planning]] (including [[Oracle Financials]]), [[customer relationship management]] and [[human resources]] management ([[Oracle HR]]).
* [[Oracle Enterprise Manager]] (OEM) used by [[database administrator]]s (DBAs) to manage the DBMS, and {{As of|2007|alt= recently}} in version 10''g'', a web-based rewrite of OEM called "Oracle Enterprise Manager Database Control". Oracle Corporation has dubbed the super-Enterprise-Manager used to manage a grid of multiple DBMS and Application Servers "Oracle Enterprise Manager Grid Control".
* [[Oracle Enterprise Manager]] (OEM) used by [[database administrator]]s (DBAs) to manage the DBMS, and {{As of|2007|alt= recently}} in version 10''g'', a web-based rewrite of OEM called "Oracle Enterprise Manager Database Control". Oracle Corporation has dubbed the super-Enterprise-Manager used to manage a grid of multiple DBMS and Application Servers "Oracle Enterprise Manager Grid Control".
* Oracle Programmer/2000, a bundling of interfaces for [[Third-generation programming language|3GL programming languages]], marketed with Oracle7 and Oracle8.<ref>{{cite web | url =/ALISE/mrktinfo.nsf/6022a43db1063796c22566de00392130/420e0389f8672386c225645e00344ecb/$FILE/Oracle%20Programmer%202000%20data%20sheet%20Feb97.pdf | title = Oracle Programmer/2000 | accessdate = 2009-02-25 | author = | last = | first = | authorlink = | format = PDF | work = | publisher = Oracle Corporation | location = | pages = | doi = | archiveurl = | archivedate = | dateformat = | quote = Oracle Programmer/2000 is a suite of programmatic interfaces that allows you to access and manipulate Oracle7 data and schemas. Programmer/2000 provides a rich set of interfaces and supports many programming languages, allowing the programmer to use the programming language and the programming paradigm of choice. }}</ref><ref>{{cite web | url =/docs/cd/A58617_01/server.804/a53717/ch1.htm#index0015 | title = Other Ways of Working with Oracle | accessdate = 2009-02-25 | author = | last = | first = | authorlink = | work = | publisher = Oracle Corporation | location = | doi = | archiveurl = | archivedate = | dateformat = | quote = Programmer/2000[:] a set of 3GL programming language interfaces }}
* Oracle Programmer/2000, a bundling of interfaces for [[Third-generation programming language|3GL programming languages]], marketed with Oracle7 and Oracle8.<ref>{{cite web | url = http://www.alise.lv/ALISE/mrktinfo.nsf/6022a43db1063796c22566de00392130/420e0389f8672386c225645e00344ecb/$FILE/Oracle%20Programmer%202000%20data%20sheet%20Feb97.pdf | title = Oracle Programmer/2000 | accessdate = 2009-02-25 | author = | last = | first = | authorlink = | format = PDF | work = | publisher = Oracle Corporation | location = | pages = | doi = | archiveurl = | archivedate = | dateformat = | quote = Oracle Programmer/2000 is a suite of programmatic interfaces that allows you to access and manipulate Oracle7 data and schemas. Programmer/2000 provides a rich set of interfaces and supports many programming languages, allowing the programmer to use the programming language and the programming paradigm of choice. }}</ref><ref>{{cite web | url = http://download.oracle.com/docs/cd/A58617_01/server.804/a53717/ch1.htm#index0015 | title = Other Ways of Working with Oracle | accessdate = 2009-02-25 | author = | last = | first = | authorlink = | work = | publisher = Oracle Corporation | location = | doi = | archiveurl = | archivedate = | dateformat = | quote = Programmer/2000[:] a set of 3GL programming language interfaces }}
</ref>
</ref>
* [[Oracle WebCenter]] Suite<ref>
* [[Oracle WebCenter]] Suite<ref>
Line 850: Line 857:
|author2=Peter Moskovits |author3=Philipp Weckerle
|author2=Peter Moskovits |author3=Philipp Weckerle
| title = Oracle WebCenter 11g Handbook: Build Rich, Customizable Enterprise 2.0 Applications
| title = Oracle WebCenter 11g Handbook: Build Rich, Customizable Enterprise 2.0 Applications
| url =/books?id=mjiiLhfQ4s8C
| url = http://books.google.com/books?id=mjiiLhfQ4s8C
| accessdate = 2011-05-09
| accessdate = 2011-05-09
| series = Osborne ORACLE Press Series
| series = Osborne ORACLE Press Series
Line 866: Line 873:
Apart from the clearly defined database options, Oracle databases may include many semi-autonomous software sub-systems, which Oracle Corporation sometimes refers to as "features" in a sense subtly different from the normal usage of the word. For example, [[Oracle Data Guard]] counts officially as a "feature", but the command-stack within SQL*Plus, though a usability feature, does not appear in the list of "features" in [http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/editions.htm#CJACGHEB Oracle's list].{{Or|date=December 2009}} Such "features" may include (for example):
Apart from the clearly defined database options, Oracle databases may include many semi-autonomous software sub-systems, which Oracle Corporation sometimes refers to as "features" in a sense subtly different from the normal usage of the word. For example, [[Oracle Data Guard]] counts officially as a "feature", but the command-stack within SQL*Plus, though a usability feature, does not appear in the list of "features" in [http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/editions.htm#CJACGHEB Oracle's list].{{Or|date=December 2009}} Such "features" may include (for example):


* Active Session History (ASH), the collection of data for immediate monitoring of very recent database activity.<ref>{{cite book | last= Alapati | first= Sam R. | authorlink = | title= Expert Oracle database 10g administration | url=/?id=xxx0KAwY_ZMC&pg=PA845&lpg=PA845&dq=ASH++Active+Session+History | accessdate= 2009-05-25 | edition = | series = | volume = | origyear = | year= 2005 | publisher= Apress | location = | language = | isbn= 978-1-59059-451-3 | oclc = | doi = | bibcode = | id = | page= 845 | nopp = | chapter = | chapterurl = | quote= ... ASH records very recent session activity (within the last five or ten minutes). | ref = | laysummary = | laydate = | separator = | postscript = | lastauthoramp= }}</ref>
* Active Session History (ASH), the collection of data for immediate monitoring of very recent database activity.<ref>{{cite book | last= Alapati | first= Sam R. | authorlink = | title= Expert Oracle database 10g administration | url= http://books.google.com/?id=xxx0KAwY_ZMC&pg=PA845&lpg=PA845&dq=ASH++Active+Session+History | accessdate= 2009-05-25 | edition = | series = | volume = | origyear = | year= 2005 | publisher= Apress | location = | language = | isbn= 978-1-59059-451-3 | oclc = | doi = | bibcode = | id = | page= 845 | nopp = | chapter = | chapterurl = | quote= ... ASH records very recent session activity (within the last five or ten minutes). | ref = | laysummary = | laydate = | separator = | postscript = | lastauthoramp= }}</ref>
* [http://www.oracle.com/technology/pub/articles/10gdba/week6_10gdba.html Automatic Workload Repository (AWR)], providing monitoring services to Oracle database installations from Oracle version 10. Prior to the release of Oracle version 10, the Statspack facility<ref>
* [http://www.oracle.com/technology/pub/articles/10gdba/week6_10gdba.html Automatic Workload Repository (AWR)], providing monitoring services to Oracle database installations from Oracle version 10. Prior to the release of Oracle version 10, the Statspack facility<ref>
{{cite journal
{{cite journal
Line 878: Line 885:
| volume = 3
| volume = 3
| pages = 371–381
| pages = 371–381
| url =/scholar?q=cache:uPdNes3VcSAJ:scholar.google.com/
| url = http://google.com/scholar?q=cache:uPdNes3VcSAJ:scholar.google.com/
| accessdate = 2010-02-05
| accessdate = 2010-02-05
| quote = Statspack utility consists of a set of Programming Language/Structured Query Language (PL/SQL) scripts, executed against the database to gather, store data and metrics, and generate reports database activity reports
| quote = Statspack utility consists of a set of Programming Language/Structured Query Language (PL/SQL) scripts, executed against the database to gather, store data and metrics, and generate reports database activity reports
Line 887: Line 894:
* [http://www.oracle.com/technology/deploy/availability/htdocs/DataGuardOverview.html Data Guard] for [[high availability]]
* [http://www.oracle.com/technology/deploy/availability/htdocs/DataGuardOverview.html Data Guard] for [[high availability]]
* [http://www.oracle.com/technology/products/oracle9i/datasheets/gateways/gateway_rel2_ds.html Generic Connectivity] for connecting to non-Oracle systems.
* [http://www.oracle.com/technology/products/oracle9i/datasheets/gateways/gateway_rel2_ds.html Generic Connectivity] for connecting to non-Oracle systems.
* Data Pump utilities, which aid in importing and exporting data and metadata between databases<ref>{{cite web|url=/docs/cd/B28359_01/server.111/b28319/dp_overview.htm#SUTIL100 |title=Overview of Oracle Data Pump |publisher=Download.oracle.com |accessdate=2009-12-19}}</ref>
* Data Pump utilities, which aid in importing and exporting data and metadata between databases<ref>{{cite web|url=http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/dp_overview.htm#SUTIL100 |title=Overview of Oracle Data Pump |publisher=Download.oracle.com |accessdate=2009-12-19}}</ref>
* SQL*Loader, utility that facilitates high performance data loading.
* SQL*Loader, utility that facilitates high performance data loading.
* Database Resource Manager (DRM), which controls the use of computing resources.<ref>{{cite book | last= Greenwald | first= Rick | authorlink = |author2=Robert Stackowiak |author3=Jonathan Stern | editor = | others = | title=Oracle Essentials: Oracle Database 11g | origyear = | origmonth = | url = | accessdate = | edition = | series = | volume = |date= November 2007 | publisher= O'Reilly | location = | language = | isbn= 978-0-596-51454-9 | oclc = | doi = | id = | page= 184 | chapter = | chapterurl = | quote= The Database Resource Manager (DRM) was first introduced in Oracle 8''i'' [...] to place limits on the amount of computer resources that can be used [...] | ref= }}</ref>
* Database Resource Manager (DRM), which controls the use of computing resources.<ref>{{cite book | last= Greenwald | first= Rick | authorlink = |author2=Robert Stackowiak |author3=Jonathan Stern | editor = | others = | title=Oracle Essentials: Oracle Database 11g | origyear = | origmonth = | url = | accessdate = | edition = | series = | volume = |date= November 2007 | publisher= O'Reilly | location = | language = | isbn= 978-0-596-51454-9 | oclc = | doi = | id = | page= 184 | chapter = | chapterurl = | quote= The Database Resource Manager (DRM) was first introduced in Oracle 8''i'' [...] to place limits on the amount of computer resources that can be used [...] | ref= }}</ref>
Line 901: Line 908:
| editor = Don Burleson
| editor = Don Burleson
| title = Oracle Database 10g New Features: Oracle 10g Reference for Advanced Tuning & Administration
| title = Oracle Database 10g New Features: Oracle 10g Reference for Advanced Tuning & Administration
| url =/books?id=ufz5-hXw2_UC
| url = http://books.google.com/books?id=ufz5-hXw2_UC
| accessdate = 2011-11-16
| accessdate = 2011-11-16
| series = Oracle In-Focus series
| series = Oracle In-Focus series
Line 912: Line 919:
}}
}}
</ref>
</ref>
* Fine-grained auditing (FGA) (in Oracle Enterprise Edition)<ref>{{cite web | url=/docs/cd/B28359_01/license.111/b28287/editions.htm#CJACGHEB | title= Feature Availability by Edition | accessdate= 2008-08-19 | author = | last = | first = | authorlink = |date= May 2008 | work= Oracle Database Licensing Information 11g Release 1 (11.1) Part Number B28287-08 | publisher= Oracle Corporation | archiveurl = | archivedate = | quote= }}</ref> supplements standard security-auditing features<ref>{{cite web | url=/technology/pub/articles/10gdba/week10_10gdba.html | title= Auditing Tells All | accessdate= 2008-08-19 | last= Nanda | first= Arup | authorlink = | work= Oracle Database 10g: The Top 20 Features for DBAs | publisher= Oracle Corporation | archiveurl = | archivedate = | quote= ...the standard audit (available in all versions) and the fine-grained audit (available in Oracle 9''i'' and up ... }}</ref>
* Fine-grained auditing (FGA) (in Oracle Enterprise Edition)<ref>{{cite web | url= http://download.oracle.com/docs/cd/B28359_01/license.111/b28287/editions.htm#CJACGHEB | title= Feature Availability by Edition | accessdate= 2008-08-19 | author = | last = | first = | authorlink = |date= May 2008 | work= Oracle Database Licensing Information 11g Release 1 (11.1) Part Number B28287-08 | publisher= Oracle Corporation | archiveurl = | archivedate = | quote= }}</ref> supplements standard security-auditing features<ref>{{cite web | url= http://www.oracle.com/technology/pub/articles/10gdba/week10_10gdba.html | title= Auditing Tells All | accessdate= 2008-08-19 | last= Nanda | first= Arup | authorlink = | work= Oracle Database 10g: The Top 20 Features for DBAs | publisher= Oracle Corporation | archiveurl = | archivedate = | quote= ...the standard audit (available in all versions) and the fine-grained audit (available in Oracle 9''i'' and up ... }}</ref>
* [[Oracle Flashback|Flashback]] for selective data recovery and reconstruction<ref>[http://www.oracle.com/technology/deploy/availability/htdocs/Flashback_Overview.htm Oracle.com]</ref>
* [[Oracle Flashback|Flashback]] for selective data recovery and reconstruction<ref>[http://www.oracle.com/technology/deploy/availability/htdocs/Flashback_Overview.htm Oracle.com]</ref>
* [http://www.oracle.com/technology/tech/sql_plus/index.html iSQL*Plus], a web-browser-based [[graphical user interface]] (GUI) for Oracle database [[Data Manipulation Language|data-manipulation]] (compare SQL*Plus)
* [http://www.oracle.com/technology/tech/sql_plus/index.html iSQL*Plus], a web-browser-based [[graphical user interface]] (GUI) for Oracle database [[Data Manipulation Language|data-manipulation]] (compare SQL*Plus)
* Oracle Data Access Components (ODAC), tools that consist of:<ref>
* Oracle Data Access Components (ODAC), tools that consist of:<ref>
{{cite web | title = Oracle Product Accessibility Status: Database Server Enterprise Edition | url =/accessibility/templates/t1286.html | archiveurl = | work = | publisher = Oracle Corporation | location = | page = | pages = | doi = | date = 2 June 2008 | archivedate = | accessdate = 2009-04-14 }}
{{cite web | title = Oracle Product Accessibility Status: Database Server Enterprise Edition | url = http://www.oracle.com/accessibility/templates/t1286.html | archiveurl = | work = | publisher = Oracle Corporation | location = | page = | pages = | doi = | date = 2 June 2008 | archivedate = | accessdate = 2009-04-14 }}
</ref>
</ref>
** Oracle Data Provider for .NET (ODP.NET)<ref>{{cite web | title = Oracle Data Provider for .NET | url =/technology/tech/windows/odpnet/index.html | archiveurl = | work = | publisher = Oracle Corporation | location = | doi = | archivedate = | accessdate = 2009-05-07 | quote = The Oracle Data Provider for .NET (ODP.NET) features optimized [[ADO.NET]] data access to the Oracle database. }}</ref>
** Oracle Data Provider for .NET (ODP.NET)<ref>{{cite web | title = Oracle Data Provider for .NET | url = http://www.oracle.com/technology/tech/windows/odpnet/index.html | archiveurl = | work = | publisher = Oracle Corporation | location = | doi = | archivedate = | accessdate = 2009-05-07 | quote = The Oracle Data Provider for .NET (ODP.NET) features optimized [[ADO.NET]] data access to the Oracle database. }}</ref>
** Oracle Developer Tools (ODT) for Visual Studio
** Oracle Developer Tools (ODT) for Visual Studio
** Oracle Providers for ASP.NET
** Oracle Providers for ASP.NET
Line 928: Line 935:
* [[Oracle Multimedia]] (known as "Oracle ''inter''Media" before Oracle 11g) for storing and integrating multimedia data within a database<ref>
* [[Oracle Multimedia]] (known as "Oracle ''inter''Media" before Oracle 11g) for storing and integrating multimedia data within a database<ref>
{{cite web
{{cite web
|url =/technetwork/database/database-technologies/multimedia/overview/index.html
|url = http://www.oracle.com/technetwork/database/database-technologies/multimedia/overview/index.html
|title = Oracle Multimedia
|title = Oracle Multimedia
|website = www.oracle.com
|website = www.oracle.com
Line 950: Line 957:
| last4 = Bhuller
| last4 = Bhuller
| title = Achieving Extreme Performance with Oracle Exadata
| title = Achieving Extreme Performance with Oracle Exadata
| url =/books?id=HFJzNfWonPQC
| url = http://books.google.com/books?id=HFJzNfWonPQC
| accessdate = 2011-10-12
| accessdate = 2011-10-12
| series = Osborne ORACLE Press Series
| series = Osborne ORACLE Press Series
Line 964: Line 971:
"Virtual Private Database" appears listed as a feature available as part of Oracle Enterprise Edition in:
"Virtual Private Database" appears listed as a feature available as part of Oracle Enterprise Edition in:
{{cite web
{{cite web
| url =/docs/cd/E11882_01/license.112/e10594/editions.htm
| url = http://download.oracle.com/docs/cd/E11882_01/license.112/e10594/editions.htm
| title = Feature Availability by Edition
| title = Feature Availability by Edition
| author = Manmeet Ahluwalia
| author = Manmeet Ahluwalia
Line 990: Line 997:
| publication-place = Lahore
| publication-place = Lahore
| publisher = Lahore University of Management Sciences
| publisher = Lahore University of Management Sciences
| url =/2006/download/E-Governance.pdf
| url = http://www.iceg.net/2006/download/E-Governance.pdf
| accessdate = 2010-02-09
| accessdate = 2010-02-09
| quote = Oracle's Virtual Private Database (VPD) [...] is a practically implemented model for fine-grained access control wherein one or more security policies are attached to each table and view in the database. These polices are sets of functions coded in PL/SQL, C or Java. A user query that accesses a table or view having a security policy, is dynamically and transparently modified by appending a predicate. This predicate is returned by the policy function for the relation/view and is a function of the user who has fired the query. A secure application context is created for each user at log in.
| quote = Oracle's Virtual Private Database (VPD) [...] is a practically implemented model for fine-grained access control wherein one or more security policies are attached to each table and view in the database. These polices are sets of functions coded in PL/SQL, C or Java. A user query that accesses a table or view having a security policy, is dynamically and transparently modified by appending a predicate. This predicate is returned by the policy function for the relation/view and is a function of the user who has fired the query. A secure application context is created for each user at log in.
Line 1,016: Line 1,023:
| editor2-first = Brian
| editor2-first = Brian
| title = Handbook of Research on Open Source Software: Technological, Economic, and Social Perspectives
| title = Handbook of Research on Open Source Software: Technological, Economic, and Social Perspectives
| url =/books?id=75KT6GdcWbYC
| url = http://books.google.com/books?id=75KT6GdcWbYC
| accessdate = 2013-02-20
| accessdate = 2013-02-20
| series = IGI Global research collection
| series = IGI Global research collection
Line 1,035: Line 1,042:
| first2 = Julian
| first2 = Julian
| title = Pro Oracle Database 10g RAC on Linux: Installation, Administration, and Performance
| title = Pro Oracle Database 10g RAC on Linux: Installation, Administration, and Performance
| url =/books?id=1iidwz4m2uwC
| url = http://books.google.com/books?id=1iidwz4m2uwC
| series = Expert's Voice in Oracle
| series = Expert's Voice in Oracle
| publisher = Apress
| publisher = Apress
Line 1,050: Line 1,057:
| first1 = Robert
| first1 = Robert
| title = Oracle Database 10g New Features
| title = Oracle Database 10g New Features
| url =/books?id=Ev1MKZo8Wq0C
| url = http://books.google.com/books?id=Ev1MKZo8Wq0C
| series = Osborne ORACLE Press Series
| series = Osborne ORACLE Press Series
| publisher = McGraw Hill Professional
| publisher = McGraw Hill Professional
Line 1,067: Line 1,074:
| others = et al.
| others = et al.
| title = Oracle Database Java Developer's Guide: 10g Release 2 (10.2)
| title = Oracle Database Java Developer's Guide: 10g Release 2 (10.2)
| url =/cd/B19306_01/java.102/b14187/chten.htm
| url = http://docs.oracle.com/cd/B19306_01/java.102/b14187/chten.htm
| accessdate = 2013-07-29
| accessdate = 2013-07-29
|date=August 2006
|date=August 2006
Line 1,088: Line 1,095:
| last3 = Lopuz
| last3 = Lopuz
| title = Linux Recipes for Oracle DBAs
| title = Linux Recipes for Oracle DBAs
| url =/books?id=oqmW4BwSteoC
| url = http://books.google.com/books?id=oqmW4BwSteoC
| accessdate = 2011-12-05
| accessdate = 2011-12-05
| series = Apress Series
| series = Apress Series
Line 1,105: Line 1,112:
| first1 = Stelios
| first1 = Stelios
| title = Oracle SQL Tuning with Oracle SQLTXPLAIN
| title = Oracle SQL Tuning with Oracle SQLTXPLAIN
| url =/books?id=1t_xdN6qivEC
| url = http://books.google.com/books?id=1t_xdN6qivEC
| accessdate = 2013-06-17
| accessdate = 2013-06-17
| year = 2013
| year = 2013
Line 1,124: Line 1,131:
* Oracle NoSQL Database, a scalable, distributed key-value [[NoSQL]] database<ref>
* Oracle NoSQL Database, a scalable, distributed key-value [[NoSQL]] database<ref>
{{cite web
{{cite web
|url =/c/a/Enterprise-Applications/Oracle-to-Boost-Data-Management-With-Endeca-Buy-517167/
|url = http://www.eweek.com/c/a/Enterprise-Applications/Oracle-to-Boost-Data-Management-With-Endeca-Buy-517167/
|title = Oracle to Boost Data Management With Endeca Buy
|title = Oracle to Boost Data Management With Endeca Buy
|first = Darryl K
|first = Darryl K
Line 1,149: Line 1,156:
| first3 = Arup
| first3 = Arup
| title = RMAN Recipes for Oracle Database 12c: A Problem-Solution Approach
| title = RMAN Recipes for Oracle Database 12c: A Problem-Solution Approach
| url =/books?id=QUEkAAAAQBAJ
| url = http://books.google.com/books?id=QUEkAAAAQBAJ
| series = Expert's voice in Oracle
| series = Expert's voice in Oracle
| publisher = Apress
| publisher = Apress
Line 1,161: Line 1,168:
web site - known as "MetaLink" until a re-branding exercise completed in October 2010. The support site provides users of Oracle Corporation products with a repository of reported problems, diagnostic scripts and solutions. It also integrates with the provision of support tools, patches and upgrades.
web site - known as "MetaLink" until a re-branding exercise completed in October 2010. The support site provides users of Oracle Corporation products with a repository of reported problems, diagnostic scripts and solutions. It also integrates with the provision of support tools, patches and upgrades.


The ''Remote Diagnostic Agent'' or ''RDA''<ref>{{cite web|url=/global/tr/support/051006_ADVANCEDMETALINK_CUSTOMER.pdf |title=Advanced MetaLink |format=PDF |accessdate=2009-12-19}}</ref> can operate as a command-line diagnostic tool executing a script. The data captured provides an overview of the Oracle Database environment intended for diagnostic and trouble-shooting. Within RDA, the ''HCVE'' (Health Check Validation Engine)<ref>{{cite web | first = Stephen | last = Rea | author = | authorlink = | title = Upgrading Oracle 9.2.0.6 to 10.2.0.3 on AIX 5.2 | url =/srea/10gR2_upgrade.txt | work = | publisher = University of Arkansas | location = | doi = | date = 16 September 2008 | archivedate = | accessdate = 2009-08-11 | quote = Run the PreInstall checklist for Oracle 10.2.0 (Metalink Note 250262.1: RDA 4 - Health Check / Validation Engine Guide): The Health Check Validation Engine (HCVE) rule set for Oracle Database 10''g'' R2 (10.2.0) PreInstall (AIX) is described in: [https://metalink.oracle.com/metalink/plsql/docs/HCVE_A201DB10R2_aix.htm Oracle.com] }}
The ''Remote Diagnostic Agent'' or ''RDA''<ref>{{cite web|url=http://www.oracle.com/global/tr/support/051006_ADVANCEDMETALINK_CUSTOMER.pdf |title=Advanced MetaLink |format=PDF |accessdate=2009-12-19}}</ref> can operate as a command-line diagnostic tool executing a script. The data captured provides an overview of the Oracle Database environment intended for diagnostic and trouble-shooting. Within RDA, the ''HCVE'' (Health Check Validation Engine)<ref>{{cite web | first = Stephen | last = Rea | author = | authorlink = | title = Upgrading Oracle 9.2.0.6 to 10.2.0.3 on AIX 5.2 | url = http://www.uaex.edu/srea/10gR2_upgrade.txt | work = | publisher = University of Arkansas | location = | doi = | date = 16 September 2008 | archivedate = | accessdate = 2009-08-11 | quote = Run the PreInstall checklist for Oracle 10.2.0 (Metalink Note 250262.1: RDA 4 - Health Check / Validation Engine Guide): The Health Check Validation Engine (HCVE) rule set for Oracle Database 10''g'' R2 (10.2.0) PreInstall (AIX) is described in: [https://metalink.oracle.com/metalink/plsql/docs/HCVE_A201DB10R2_aix.htm Oracle.com] }}
</ref> can verify and isolate host system environmental issues that may affect the performance of Oracle software.
</ref> can verify and isolate host system environmental issues that may affect the performance of Oracle software.


===Database-related guidelines===
===Database-related guidelines===
Oracle Corporation also endorses certain practices and conventions as enhancing the use of its database products. These include:
Oracle Corporation also endorses certain practices and conventions as enhancing the use of its database products. These include:
* Oracle Maximum Availability Architecture (MAA)<ref>{{cite web|url=/search/Oracle+Maximum+Availability+Architecture.html |title=oracle maximum availability architecture News and Other Resources &#124; TechRepublic |publisher=Search.techrepublic.com.com |accessdate=2012-07-26}}</ref> guidelines on developing high-availability systems
* Oracle Maximum Availability Architecture (MAA)<ref>{{cite web|url=http://search.techrepublic.com.com/search/Oracle+Maximum+Availability+Architecture.html |title=oracle maximum availability architecture News and Other Resources &#124; TechRepublic |publisher=Search.techrepublic.com.com |accessdate=2012-07-26}}</ref> guidelines on developing high-availability systems
* [[Optimal Flexible Architecture]] (OFA), blueprints for mapping Oracle-database objects to file-systems
* [[Optimal Flexible Architecture]] (OFA), blueprints for mapping Oracle-database objects to file-systems


Line 1,180: Line 1,187:
===User groups===
===User groups===
A variety of official (Oracle-sponsored) and unofficial [[Oracle User Group]]s has grown up of users and developers of Oracle databases. They include:
A variety of official (Oracle-sponsored) and unofficial [[Oracle User Group]]s has grown up of users and developers of Oracle databases. They include:
* Geographical/regional user groups<ref>{{cite web|url=/usergrps.html |title=Oracle Users Group Groups |publisher=Morganslibrary.org |accessdate=2012-07-26}}</ref>
* Geographical/regional user groups<ref>{{cite web|url=http://www.morganslibrary.org/usergrps.html |title=Oracle Users Group Groups |publisher=Morganslibrary.org |accessdate=2012-07-26}}</ref>
* [[Independent Oracle Users Group]]
* [[Independent Oracle Users Group]]
* Industry-centric user groups
* Industry-centric user groups
Line 1,206: Line 1,213:
|first= David C.
|first= David C.
|title= Oracle DBA Pocket Guide
|title= Oracle DBA Pocket Guide
|url=/books?id=4FB1pZetQ-IC
|url= http://books.google.com/books?id=4FB1pZetQ-IC
|accessdate= 2010-08-10
|accessdate= 2010-08-10
|series= Pocket References Series
|series= Pocket References Series
Line 1,218: Line 1,225:
</ref>
</ref>


; Enterprise Edition (DB EE): {{As of|2010|alt=As of July 2010}}, the database that costs the most per machine-processor among Oracle database editions, at $47,500 per processor. The term "per processor" for Enterprise Edition is defined with respect to physical cores and a processor core multiplier (common processors = 0.5*cores). e.g. An 8-processor, 32-core server using Intel Xeon 56XX CPUs would require 16 processor licenses.<ref>{{cite web|title=Oracle Technology Global Price List|url=/corporate/pricing/technology-price-list.pdf|publisher=Oracle Corporation |date=2010-06-14 |accessdate=2010-07-13}}</ref><ref>{{cite web|title=Processor Core Factor Table|url=/us/corporate/contracts/processor-core-factor-table-070634.pdf|accessdate=2011-04-08}}</ref>
; Enterprise Edition (DB EE): {{As of|2010|alt=As of July 2010}}, the database that costs the most per machine-processor among Oracle database editions, at $47,500 per processor. The term "per processor" for Enterprise Edition is defined with respect to physical cores and a processor core multiplier (common processors = 0.5*cores). e.g. An 8-processor, 32-core server using Intel Xeon 56XX CPUs would require 16 processor licenses.<ref>{{cite web|title=Oracle Technology Global Price List|url=http://www.oracle.com/corporate/pricing/technology-price-list.pdf|publisher=Oracle Corporation |date=2010-06-14 |accessdate=2010-07-13}}</ref><ref>{{cite web|title=Processor Core Factor Table|url=http://www.oracle.com/us/corporate/contracts/processor-core-factor-table-070634.pdf|accessdate=2011-04-08}}</ref>
; Standard Edition (DB SE): Cheaper: it can run on up to four processors but has fewer features than Enterprise Edition—it lacks proper parallelization,<ref>Oracle Database Licensing Information [http://download.oracle.com/docs/cd/B28359_01/license.111/b28287/editions.htm#BABDJGGI Database Editions]</ref> etc.; but remains quite suitable for running medium-sized applications. There are not additional cost for Oracle RAC on the latest Oracle 11g R2 standard edition release.
; Standard Edition (DB SE): Cheaper: it can run on up to four processors but has fewer features than Enterprise Edition—it lacks proper parallelization,<ref>Oracle Database Licensing Information [http://download.oracle.com/docs/cd/B28359_01/license.111/b28287/editions.htm#BABDJGGI Database Editions]</ref> etc.; but remains quite suitable for running medium-sized applications. There are not additional cost for Oracle RAC on the latest Oracle 11g R2 standard edition release.
; Standard ONE (DB SE1 or DB SEO): Sells even more cheaply, but remains limited to two CPUs. Standard Edition ONE sells on a per-seat basis with a five-user minimum. Oracle Corporation usually sells the licenses with an extra 22% cost for support and upgrades (access to My Oracle Support—Oracle Corporation's support site), which customers must renew annually.
; Standard ONE (DB SE1 or DB SEO): Sells even more cheaply, but remains limited to two CPUs. Standard Edition ONE sells on a per-seat basis with a five-user minimum. Oracle Corporation usually sells the licenses with an extra 22% cost for support and upgrades (access to My Oracle Support—Oracle Corporation's support site), which customers must renew annually.
; Oracle Express Edition (DB XE) <ref>{{cite web|url=/technetwork/database/express-edition/overview/index.html |title=overview |publisher=Oracle.com |accessdate=2012-07-26}}</ref> (Oracle XE): An addition to the Oracle database product family ([[development stage#Beta|beta]] version released in 2005, production version released in February 2006), offers a free version of the Oracle RDBMS, but one limited to 11 GB of user data and to 1 GB of memory used by the database (SGA+PGA).<ref>[http://download.oracle.com/docs/cd/E17781_01/install.112/e18802/toc.htm#BABIECJA Licensing Restrictions]</ref> XE will use no more than one CPU and lacks an internal [[Java Virtual Machine|JVM]]. XE runs only on 32-bit Windows and 64-bit Linux, but not on AIX, Solaris, HP-UX and the other operating systems available for other editions. Support is via a free [https://forums.oracle.com/forums/forum.jspa?forumID=251&start=0 Oracle Discussion Forum] only.
; Oracle Express Edition (DB XE) <ref>{{cite web|url=http://www.oracle.com/technetwork/database/express-edition/overview/index.html |title=overview |publisher=Oracle.com |accessdate=2012-07-26}}</ref> (Oracle XE): An addition to the Oracle database product family ([[development stage#Beta|beta]] version released in 2005, production version released in February 2006), offers a free version of the Oracle RDBMS, but one limited to 11 GB of user data and to 1 GB of memory used by the database (SGA+PGA).<ref>[http://download.oracle.com/docs/cd/E17781_01/install.112/e18802/toc.htm#BABIECJA Licensing Restrictions]</ref> XE will use no more than one CPU and lacks an internal [[Java Virtual Machine|JVM]]. XE runs only on 32-bit Windows and 64-bit Linux, but not on AIX, Solaris, HP-UX and the other operating systems available for other editions. Support is via a free [https://forums.oracle.com/forums/forum.jspa?forumID=251&start=0 Oracle Discussion Forum] only.


As computers running Oracle often have many [[multi-core processor]]s (resulting in many cores, all to be licensed), the software price can rise into the hundreds of thousands of dollars. The [[total cost of ownership]] often exceeds this, as large Oracle installations usually require experienced and trained [[database administrator]]s to do the set-up properly. Furthermore, further components must be licensed and paid for, for instance the Enterprise Options used with the databases. Many licensing pitfalls let even rise the costs of ownership.<ref>{{cite web|title=Top 60 Licensing Pitfalls for Oracle Databases and Oracle Technology Products|url=/references/oracle/top-60-licensing-pitfalls-for-oracle-databases-and-oracle-technology-products/|publisher=OMTCO Operations Management Technology Consulting GmbH|accessdate=17 April 2013}}</ref> Because of the product's large installed base and available training courses, Oracle specialists in some areas have become a more abundant resource than those for more exotic databases. Oracle frequently provides special training offers for database-administrators.
As computers running Oracle often have many [[multi-core processor]]s (resulting in many cores, all to be licensed), the software price can rise into the hundreds of thousands of dollars. The [[total cost of ownership]] often exceeds this, as large Oracle installations usually require experienced and trained [[database administrator]]s to do the set-up properly. Furthermore, further components must be licensed and paid for, for instance the Enterprise Options used with the databases. Many licensing pitfalls let even rise the costs of ownership.<ref>{{cite web|title=Top 60 Licensing Pitfalls for Oracle Databases and Oracle Technology Products|url=http://omtco.eu/references/oracle/top-60-licensing-pitfalls-for-oracle-databases-and-oracle-technology-products/|publisher=OMTCO Operations Management Technology Consulting GmbH|accessdate=17 April 2013}}</ref> Because of the product's large installed base and available training courses, Oracle specialists in some areas have become a more abundant resource than those for more exotic databases. Oracle frequently provides special training offers for database-administrators.


On Linux, Oracle's ''certified configurations'' include Oracle's own [[Oracle Linux]] and other commercial [[Linux distributions]] ([[Red Hat Enterprise Linux]] 3, 4 and 5, [[SUSE Linux Enterprise Server|SuSE SLES]] 8, 9, 10 and 11, [[Asianux]]), which can cost in a range from a few hundred to a few thousand USD per year (depending on processor architecture and the support package purchased).
On Linux, Oracle's ''certified configurations'' include Oracle's own [[Oracle Linux]] and other commercial [[Linux distributions]] ([[Red Hat Enterprise Linux]] 3, 4 and 5, [[SUSE Linux Enterprise Server|SuSE SLES]] 8, 9, 10 and 11, [[Asianux]]), which can cost in a range from a few hundred to a few thousand USD per year (depending on processor architecture and the support package purchased).


The Oracle database system can also install and run on freely available Linux distributions such as the Red Hat-based CentOS,<ref>{{cite web|url=/page/Installing+Oracle+on+CentOS |title=Installation centos; official Oracle Wiki |publisher=Wiki.oracle.com |accessdate=2009-12-19}}</ref> or Debian-based systems.<ref>{{cite web|url=/page/Installing+Oracle+on+Debian+%2F+Kubuntu+%2F+Ubuntu |title=Installation on Debian-based systems; official Oracle Wiki |publisher=Wiki.oracle.com |accessdate=2009-12-19}}</ref>
The Oracle database system can also install and run on freely available Linux distributions such as the Red Hat-based CentOS,<ref>{{cite web|url=http://wiki.oracle.com/page/Installing+Oracle+on+CentOS |title=Installation centos; official Oracle Wiki |publisher=Wiki.oracle.com |accessdate=2009-12-19}}</ref> or Debian-based systems.<ref>{{cite web|url=http://wiki.oracle.com/page/Installing+Oracle+on+Debian+%2F+Kubuntu+%2F+Ubuntu |title=Installation on Debian-based systems; official Oracle Wiki |publisher=Wiki.oracle.com |accessdate=2009-12-19}}</ref>


== See also ==
== See also ==
Line 1,244: Line 1,251:
==Bibliography==
==Bibliography==
{{refbegin}}
{{refbegin}}
* {{Cite journal | first = Kevin | last = Loney | date = 17 December 2008 | title = Oracle Database 11g The Complete Reference | edition = 1st | publisher = [[McGraw-Hill]] | page = 1368 | isbn = 0-07-159875-8 | url =/product.php?isbn=0071598758 | accessdate = 2009-09-05 | postscript = <!--None--> }}
* {{Cite journal | first = Kevin | last = Loney | date = 17 December 2008 | title = Oracle Database 11g The Complete Reference | edition = 1st | publisher = [[McGraw-Hill]] | page = 1368 | isbn = 0-07-159875-8 | url = http://www.mhprofessional.com/product.php?isbn=0071598758 | accessdate = 2009-09-05 | postscript = <!--None--> }}
{{refend}}
{{refend}}



Revision as of 10:32, 21 September 2014

Oracle Database
Developer(s)Oracle Corporation
Written inAssembly language, C, C++[1]
Available inMultilingual
TypeORDBMS
LicenseProprietary
WebsiteOracle RDBMS

Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system [2] produced and marketed by Oracle Corporation.

Larry Ellison and two friends and former co-workers, Bob Miner and Ed Oates, started a consultancy called Software Development Laboratories (SDL) in 1977. SDL developed the original version of the Oracle software. The name Oracle comes from the code-name of a CIA-funded project Ellison had worked on while previously employed by Ampex.[3]

Physical and logical structures

An Oracle database system—identified by an alphanumeric system identifier or SID[4]—comprises at least one instance of the application, along with data storage. An instance—identified persistently by an instantiation number (or activation id: SYS.V_$DATABASE.ACTIVATION#)—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).) Oracle documentation can refer to an active database instance as a "shared memory realm".[5]

Users of Oracle databases refer to the server-side memory-structure as the SGA (System Global Area). The SGA typically holds cache information such as data-buffers, SQL commands, and user information. In addition to storage, the database consists of online redo logs (or 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 the physical-standby forms of data replication using Oracle Data Guard.

If the Oracle database administrator has implemented Oracle RAC (Real Application Clusters), then multiple instances, usually on different servers, attach to a central storage array. This scenario offers advantages such as better performance, scalability and redundancy. However, support becomes more complex, and many sites do not use RAC. In version 10g, grid computing introduced shared resources where an instance can use (for example) CPU resources from another node (computer) in the grid.

The Oracle DBMS can store and execute stored procedures and functions within itself. PL/SQL (Oracle Corporation's proprietary procedural extension to SQL), or the object-oriented language Java can invoke such code objects and/or provide the programming structures for writing them.

Storage

The Oracle RDBMS stores data logically in the form of tablespaces and physically in the form of data files ("datafiles").[6] Tablespaces can contain various types of memory segments, such as Data Segments, Index Segments, etc. Segments in turn comprise one or more extents. Extents comprise groups of contiguous data blocks. Data blocks form the basic units of data storage.

A DBA can impose maximum quotas on storage per user within each tablespace.[7]

Partitioning

Newer versions of the database can also include a partitioning feature: this allows the partitioning of tables based on different set of keys. Specific partitions can then be easily added or dropped to help manage large data sets.

Monitoring

Oracle database management tracks its computer data storage with the help of information stored in the SYSTEM tablespace. The SYSTEM tablespace contains the data dictionary—and often (by default) indexes and clusters. A data dictionary consists of a special collection of tables that contains information about all user-objects in the database. Since version 8i, the Oracle RDBMS also supports "locally managed" tablespaces that store space management information in bitmaps in their own headers rather than in the SYSTEM tablespace (as happens with the default "dictionary-managed" tablespaces). Version 10g and later introduced the SYSAUX tablespace, which contains some of the tables formerly stored in the SYSTEM tablespace, along with objects for other tools such as OEM, which previously required its own tablespace.[8]

Disk files

Disk files primarily represent one of the following structures:

  • Data and index files: These files provide the physical storage of data, which can consist of the data-dictionary data (associated to the tablespace SYSTEM), user data, or index data. These files can be managed manually or managed by Oracle itself ("Oracle-managed files"). Note that a datafile has to belong to exactly one tablespace, whereas a tablespace can consist of multiple datafiles.
  • Redo log files, consisting of all changes to the database, used to recover from an instance failure. Note that often a database will store these files multiple times, for extra security in case of disk failure. The identical redo log files are said to belong to the same group.
  • Undo files: These special datafiles, which can only contain undo information, aid in recovery, rollbacks, and read-consistency.
  • Archive log files: These files, copies of the redo log files, are usually stored at different locations. They are necessary (for example) when applying changes to a standby database, or when performing recovery after a media failure. It is possible to archive to multiple locations.
  • Tempfiles: These special datafiles serve exclusively for temporary storage data (used for example for large sorts or for global temporary tables)
  • Control file, necessary for database startup. "A binary file that records the physical structure of a database and contains the names and locations of redo log files, the time stamp of the database creation, the current log sequence number, checkpoint information, and so on."[9]

At the physical level, data files comprise one or more data blocks, where the block size can vary between data files.

Data files can occupy pre-allocated space in the file system of a computer server, utilize raw disk directly, or exist within ASM logical volumes.[10]

Database schema

Most Oracle database installations traditionally came with a default schema called SCOTT. After the installation process sets up sample tables, the user can log into the database with the username scott and the password tiger. 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.[11]

Oracle Corporation now de-emphasizes the SCOTT schema, as it uses few features of more recent Oracle releases. Most recent examples supplied by Oracle Corporation reference the default HR or OE schemas.

Other default schemas[12][13] include:

  • SYS (essential core database structures and utilities)
  • SYSTEM (additional core database structures and utilities, and privileged account)
  • OUTLN (utilized to store metadata for stored outlines for stable query-optimizer execution plans.[14])
  • BI, IX, HR, OE, PM, and SH (expanded sample schemas[15] containing more data and structures than the older SCOTT schema).

System Global Area

Each Oracle instance uses a System Global Area or SGA—a shared-memory area—to store its data and control-information.[16]

Each Oracle instance allocates itself an SGA when it starts and de-allocates it at shut-down time. The information in the SGA consists of the following elements, each of which has a fixed size, established at instance startup:

  • Datafiles

Every Oracle database has one or more physical datafiles, which contain all the database data. The data of logical database structures, such as tables and indexes, is physically stored in the datafiles allocated for a database.

Datafiles have the following characteristics:

  • One or more datafiles form a logical unit of database storage called a tablespace.
  • A datafile can be associated with only one tablespace.
  • Datafiles can be defined to extend automatically when they are full.

Data in a datafile is read, as needed, during normal database operation and stored in the memory cache of Oracle Database. For example, if a user wants to access some data in a table of a database, and if the requested information is not already in the memory cache for the database, then it is read from the appropriate datafiles and stored in memory.

Modified or new data is not necessarily written to a datafile immediately. To reduce the amount of disk access and to increase performance, data is pooled in memory and written to the appropriate datafiles all at once

  • the redo log buffer: this stores redo entries—a log of changes made to the database. The instance writes redo log buffers to the redo log as quickly and efficiently as possible. The redo log aids in instance recovery in the event of a system failure.
  • the shared pool: this area of the SGA stores shared-memory structures such as shared SQL areas in the library cache and internal information in the data dictionary. An insufficient amount of memory allocated to the shared pool can cause performance degradation.
  • the Large pool Optional area that provides large memory allocations for certain large processes, such as Oracle backup and recovery operations, and I/O server processes
  • Database buffer cache: Caches blocks of data retrieved from the database
  • KEEP buffer pool: A specialized type of database buffer cache that is tuned to retain blocks of data in memory for long periods of time
  • RECYCLE buffer pool: A specialized type of database buffer cache that is tuned to recycle or remove block from memory quickly
  • nK buffer cache: One of several specialized database buffer caches designed to hold block sizes different from the default database block size
  • Java pool:Used for all session-specific Java code and data in the Java Virtual Machine (JVM)
  • Streams pool: Used by Oracle Streams to store information required by capture and apply

When you start the instance by using Enterprise Manager or SQL*Plus, the amount of memory allocated for the SGA is displayed.[17]

Library cache

The library cache[18] stores shared SQL, caching the parse tree and the execution plan for every unique SQL statement. If multiple applications issue the same SQL statement, each application can access the shared SQL area. This reduces the amount of memory needed and reduces the processing-time used for parsing and execution planning.

Data dictionary cache

The data dictionary comprises a set of tables and views that map the structure of the database.

Oracle databases store information here about the logical and physical structure of the database. The data dictionary contains information such as:

  • user information, such as user privileges
  • integrity constraints defined for tables in the database
  • names and datatypes of all columns in database tables
  • information on space allocated and used for schema objects

The Oracle instance frequently accesses the data dictionary to parse SQL statements. Oracle operation depends on ready access to the data dictionary—performance bottlenecks in the data dictionary affect all Oracle users. Because of this, database administrators must make sure that the data dictionary cache[19] has sufficient capacity to cache this data. Without enough memory for the data-dictionary cache, users see a severe performance degradation. Allocating sufficient memory to the shared pool where the data dictionary cache resides precludes these particular performance problem.

Program Global Area

The Program Global Area[20][21] or PGA memory-area of an Oracle instance contains data and control-information for Oracle's server-processes.

The size and content of the PGA depends on the Oracle-server options installed. This area consists of the following components:

  • stack-space: the memory that holds the session's variables, arrays, and so on
  • session-information: unless using the multithreaded server, the instance stores its session-information in the PGA. In a multithreaded server, the session-information goes in the SGA.)
  • private SQL-area: an area that holds information such as bind-variables and runtime-buffers
  • sorting area: an area in the PGA that holds information on sorts, hash-joins, etc.

DBAs can monitor PGA usage via the V$SESSTA(T system view.

Dynamic performance views

The dynamic performance views (also known as "fixed views") within an Oracle database present information from virtual tables (X$ tables)[22] built on the basis of database memory.[23] Database users can access the V$ views (named after the prefix of their synonyms) to obtain information on database structures and performance.

Process architectures

Oracle processes

The Oracle RDBMS typically relies on a group of processes running simultaneously in the background and interacting to monitor and expedite database operations. Typical operating environments might include - temporarily or permanently - some of the following individual processes (shown along with their abbreviated nomenclature):[24]

  • advanced queueing processes (Qnnn)[25]
  • archiver processes (ARCn)
  • checkpoint process (CKPT) *REQUIRED*
  • coordinator-of-job-queues process (CJQn): dynamically spawns slave processes for job-queues
  • database writer processes (DBWn) *REQUIRED*
  • dispatcher processes (Dnnn): multiplex server-processes on behalf of users
  • main Data Guard Broker monitor process (DMON)[26]
  • job-queue slave processes (Jnnn)[27]
  • log-writer process (LGWR) *REQUIRED*
  • log-write network-server (LNSn): transmits redo logs in Data Guard environments
  • logical standby coordinator process (LSP0): controls Data Guard log-application
  • media-recovery process (MRP): detached recovery-server process
  • memory-manager process (MMAN): used for internal database tasks such as Automatic Shared Memory Management
  • memory-monitor process (MMON): process for automatic problem-detection, self-tuning and statistics-gathering[28]
  • memory-monitor light process (MMNL): gathers and stores Automatic Workload Repository (AWR) data
  • mmon slaves (Mnnnn—M0000, M0001, etc.): background slaves of the MMON process[29]
  • process-monitor process (PMON) *REQUIRED*
  • process-spawner (PSP0): spawns Oracle processes
  • queue-monitor coordinator process (QMNC): dynamically spawns queue monitor slaves[30]
  • queue-monitor processes (QMNn)
  • recoverer process (RECO)
  • remote file-server process (RFS) - in Oracle Data Guard, a standby recipient of primary redo-logs[31]
  • shared server processes (Snnn): serve client-requests
  • system monitor process (SMON) *REQUIRED*

User processes, connections and sessions

Oracle Database terminology distinguishes different computer-science terms in describing how end-users interact with the database:

  • user processes involve the invocation of application software[32]
  • a connection refers to the pathway linking a user process to an Oracle instance[33]
  • sessions consist of specific connections to an Oracle instance.[34] Each session within an instance has a session identifier or "SID"[35] (distinct from the system-identifier SID).

Concurrency and locking

Oracle databases control simultaneous access to data resources with locks (alternatively documented as "enqueues").[36] The databases also utilize "latches" - low-level serialization mechanisms to protect shared data structures in the System Global Area.[37]

Configuration

Database administrators control many of the tunable variations in an Oracle instance by means of values in a parameter file.[38] This file in its ASCII default form ("pfile") normally has a name of the format init<SID-name>.ora. The default binary equivalent server parameter file ("spfile") (dynamically reconfigurable to some extent)[39] defaults to the format spfile<SID-name>.ora. Within an SQL-based environment, the views V$PARAMETER[40] and V$SPPARAMETER[41] give access to reading parameter values.

Administration

The "Scheduler" (DBMS_SCHEDULER package, available from Oracle 10g onwards) and the Job subsystem (DBMS_JOB package) permit the automation of predictable processing.[42]

Oracle Resource Manager aims to allocate CPU resources between users and groups of users when such resources become scarce.[43]

Oracle Corporation stated in product announcements that manageability for DBAs had improved from Oracle9i to 10g. Lungu and Vătuiu (2008) assessed the relative manageability by performing common DBA tasks and measuring timings. [44] They performed their tests on a single Pentium CPU (1.7 GHz) with 512 MB RAM,running Windows Server 2000. From Oracle9i to 10g, installation improved 36%,day-to-day administration 63%, backup and recovery 63%, and performance diagnostics and tuning 74%, for a weighted total improvement of 56%. The researchers concluded that "Oracle10g represents a giant step forward from Oracle9i in making the database easier to use and manage".

Network access

Oracle Net Services allow client or remote applications to access Oracle databases via network sessions using various protocols.

Internationalization

Oracle Database software comes in 63 language-versions (including regional variations such as British English and American English). Variations between versions cover the names of days and months, abbreviations, time-symbols (such as A.M. and A.D.), and sorting.[45]

Oracle Corporation has translated Oracle Database error-messages into Arabic, Catalan, Chinese, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, Swedish, Thai and Turkish.[46]

Oracle Corporation provides database developers with tools and mechanisms for producing internationalized database applications: referred to internally as "Globalization".[47][48]

History

Corporate/technical timeline

  • 1977: Larry Ellison and friends founded Software Development Laboratories (SDL).
  • 1978: Oracle Version 1, written in assembly language, runs on PDP-11 under RSX, in 128K of memory. Implementation separates Oracle code and user code. Oracle V1 is never officially released.[49]
  • 1979: SDL changed its company-name to "Relational Software, Inc." (RSI) and introduced its product Oracle V2 as an early relational database system - often cited[by whom?] as the first commercially sold RDBMS. The version did not support transactions, but implemented the basic SQL functionality of queries and joins. (RSI never released a version 1 - instead calling the first version version 2 as a marketing gimmick.)[50]
  • 1982: RSI in its turn changed its name, becoming known as "Oracle Corporation",[51] to align itself more closely with its flagship product.
  • 1983: The company released Oracle version 3, which it had re-written using the C programming language, and which supported COMMIT and ROLLBACK functionality for transactions. Version 3 extended platform support from the existing Digital VAX/VMS systems to include Unix environments.[51]
  • 1984: Oracle Corporation released Oracle version 4, which supported read-consistency.[52] In October it also released the first Oracle for the IBM PC.[53]
  • 1985: Oracle Corporation released Oracle version 5, which supported the client–server model—a sign of networks becoming more widely available in the mid-1980s.
  • 1986: Oracle version 5.1 started supporting distributed queries.
  • 1988: Oracle RDBMS version 6 came out with support for PL/SQL embedded within Oracle Forms v3 (version 6 could not store PL/SQL in the database proper), row-level locking and hot backups.[54]
  • 1989: Oracle Corporation entered the application-products market and developed its ERP product, (later to become part of the Oracle E-Business Suite), based on the Oracle relational database.
  • 1990: the release of Oracle Applications release 8[51]
  • 1992: Oracle version 7 appeared with support for referential integrity, stored procedures and triggers.
  • 1997: Oracle Corporation released version 8, which supported object-oriented development and multimedia applications.
  • 1999: The release of Oracle8i aimed to provide a database inter-operating better with the Internet (the i in the name stands for "Internet"). The Oracle8i database incorporated a native Java virtual machine (Oracle JVM, also known as "Aurora").[55]
  • 2000: Oracle E-Business Suite 11i pioneers integrated enterprise application software[51]
  • 2001: Oracle9i went into release with 400 new features, including the ability to read and write XML documents. 9i also provided an option for Oracle RAC, or "Real Application Clusters", a computer-cluster database, as a replacement for the Oracle Parallel Server (OPS) option.
  • 2002: the release of Oracle 9i Database Release 2 (9.2.0)[56]
  • 2003: Oracle Corporation released Oracle Database 10g, which supported regular expressions. (The g stands for "grid"; emphasizing a marketing thrust of presenting 10g as "grid computing ready".)
  • 2005: Oracle Database 10.2.0.1—also known as Oracle Database 10g Release 2 (10gR2)—appeared.
  • 2006: Oracle Corporation announces Unbreakable Linux[51] and acquires i-flex
  • 2007: Oracle Database 10g release 2 sets a new world record TPC-H 3000 GB benchmark result[57]
  • 2007: Oracle Corporation released Oracle Database 11g for Linux and for Microsoft Windows.
  • 2008: Oracle Corporation acquires BEA Systems.
  • 2010: Oracle Corporation acquires Sun Microsystems.
  • 2011: Oracle Corporation acquires web content management system FatWire Software.
  • 2011: On October 18, Oracle Corporation acquires Endeca Technologies Inc. faceted search engine software vendor.
  • 2013: Oracle Corporation released Oracle Database 12c[58] for Linux, Solaris and Windows. (The c stands for "cloud".)

Patch Updates and Security Alerts

Oracle Corporation releases Critical Patch Updates (CPUs) or Security Patch Updates (SPUs)[59] and Security Alerts to close security holes that could be used for data theft. Critical Patch Updates (CPUs) and Security Alerts come out quarterly on the Tuesday closest to 17th day of the month.

Version numbering

Oracle products follow a custom release numbering and naming convention. With the Oracle RDBMS 10g release, Oracle Corporation began using the "10g" label in all versions of its major products, although some sources refer to Oracle Applications Release 11i as Oracle 11i.[clarification needed] The suffixes "i", "g" and "c" do not actually represent a low-order part of the version number, as letters typically represent in software industry version numbering; that is, there is no predecessor version of Oracle 10g called Oracle 10f. Instead, the letters stand for "internet", "grid" and "cloud", respectively.[60] Consequently many simply drop the "g" or "i" suffix when referring to specific versions of an Oracle product.

Major database-related products and some of their versions include:

Since version 2, Oracle's RDBMS release numbering has used the following codes:

  • Oracle v2 : 2.3
  • Oracle v3 : 3.1.3
  • Oracle v4 : 4.1.4.0-4.1.4.4
  • Oracle v5 : 5.0.22, 5.1.17, 5.1.22
  • Oracle v6 : 6.0.17-6.0.36 (no OPS code), 6.0.37 (with OPS)
  • Oracle7: 7.0.12–7.3.4
  • Oracle8 Database: 8.0.3–8.0.6
  • Oracle8i Database Release 1: 8.1.5.0–8.1.5.1
  • Oracle8i Database Release 2: 8.1.6.0–8.1.6.3
  • Oracle8i Database Release 3: 8.1.7.0–8.1.7.4
  • Oracle9i Database Release 1: 9.0.1.0–9.0.1.5 (Patchset as of December 2003)
  • Oracle9i Database Release 2: 9.2.0.1–9.2.0.8 (Patchset as of April 2007)
  • Oracle Database 10g Release 1: 10.1.0.2–10.1.0.5 (Patchset as of February 2006)
  • Oracle Database 10g Release 2: 10.2.0.1–10.2.0.5 (Patchset as of April 2010)
  • Oracle Database 11g Release 1: 11.1.0.6–11.1.0.7 (Patchset as of September 2008)
  • Oracle Database 11g Release 2: 11.2.0.1–11.2.0.4 (Patchset as of August 2013)
  • Oracle Database 12c Release 1: 12.1 (Patchset as of June 2013)
  • Oracle Database 12c Release 1: 12.1.0.2 (Patchset as of July 2014)

The version-numbering syntax within each release follows the pattern: major.maintenance.application-server.component-specific.platform-specific.

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.

The Oracle Database Administrator's Guide offers further information on Oracle release numbers.

Marketing editions

Over and above the different versions of the Oracle database management software developed over time, Oracle Corporation subdivides its product into varying "editions" - apparently for marketing and license-tracking reasons. (Do not confuse the marketing "editions" with the internal virtual versioning "editions" introduced with Oracle 11.2).[61] In approximate order of decreasing scale:

  • Enterprise Edition[62] (EE) includes more features than the "Standard Edition", especially in the areas of performance and security. Oracle Corporation licenses this product on the basis of users or of processors, typically for servers running 4 or more CPUs. EE has no memory limits, and can utilize clustering using Oracle RAC software.
  • Standard Edition[63] (SE) contains base database functionality. Oracle Corporation licenses this product on the basis of users or of processors, typically for servers running from one to four CPUs. If the number of CPUs exceeds 4 CPUs, the user must convert to an Enterprise license. SE has no memory limits, and can utilize clustering with Oracle RAC at no additional charge.
  • Standard Edition One,[64] (SE1[65] or SEO) introduced with Oracle 10g, has some additional feature-restrictions. Oracle Corporation markets it for use on systems with one or two CPUs. It has no memory limitations.
  • Express Edition[66] ("Oracle Database XE")
    • The first Express Edition, introduced in 2005, offered Oracle 10g free to distribute on Windows and Linux platforms. It had a footprint of only 150 MB, had a limitation to a maximum of 4 GB of user data[67] and could use only a single CPU. Although it could install on a server with any amount of memory, it used a maximum of 1 GB.[68] Support for this version came exclusively through on-line forums and not through Oracle support.
    • Oracle 11g Express Edition, released by Oracle Corporation on 24 September 2011,[69] can support 11 GB of user data.[70] Oracle XE does not support loading Java code into the database.[71]
  • Oracle Database Lite,[72] intended for running on mobile devices. The embedded[73] mobile database located on the mobile device can synchronize with a server-based installation. Includes support for Win32, Windows CE, Palm OS, and EPOC database clients, integration with Oracle's Advanced Queuing (AQ) mechanism, and data and application synchronization software (to enterprise Oracle databases). Supports 100% Java development (through JDBC drivers and the database's native support for embedded SQLJ and Java stored procedures).

Host platforms

Prior to releasing Oracle 9i in 2001, Oracle Corporation ported its database product to a wide variety of platforms. Subsequently Oracle Corporation consolidated on a smaller range of operating-system platforms.

As of November 2011, Oracle Corporation supported the following operating systems and hardware platforms for Oracle Database 11g (11.2.0.2.0):[74]

In 2011, Oracle Corporation announced the availability of Oracle Database Appliance, a pre-built, pre-tuned, highly available clustered database server built using two SunFire X86 servers and direct attached storage.

Some Oracle Enterprise edition databases running on certain Oracle-supplied hardware can utilize Hybrid Columnar Compression for more efficient storage.[76]

Oracle products

  • Oracle Database Firewall[77] analyzes database traffic on a network to prevent threats such as SQL injection.[78]

Database options

Oracle Corporation refers to some extensions to the core functionality of the Oracle database as "database options".[79] As of 2013 such options include:

In most cases, using these options entails extra licensing costs.[88][89]

Suites

In addition to its RDBMS, Oracle Corporation has released several related suites of tools and applications relating to implementations of Oracle databases. For example:

Database "features"

Apart from the clearly defined database options, Oracle databases may include many semi-autonomous software sub-systems, which Oracle Corporation sometimes refers to as "features" in a sense subtly different from the normal usage of the word. For example, Oracle Data Guard counts officially as a "feature", but the command-stack within SQL*Plus, though a usability feature, does not appear in the list of "features" in Oracle's list.[original research?] Such "features" may include (for example):

Tools

Users can develop their own applications in Java and PL/SQL using tools such as:

As of 2007 Oracle Corporation had started[clarification needed] a drive toward "wizard"-driven environments with a view to enabling non-programmers to produce simple data-driven applications.[107]

The Database Upgrade Assistant (DBUA)[108] provides a GUI for the upgrading of an Oracle database.[109]

JAccelerator (NCOMP) - a native-compilation Java "accelerator", integrates hardware-optimized Java code into an Oracle 10g database.[110]

Oracle SQL Developer, a free graphical tool for database development, allows developers to browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. It incorporates standard and customized reporting.

Oracle's OPatch provides patch management for Oracle databases.[111]

The SQLTXPLAIN tool (or SQLT) provides tuning assistance for Oracle SQL queries.[112]

Other databases marketed by Oracle Corporation

By acquiring other technology in the database field, Oracle Corporation can also offer:

  • TimesTen, a memory-resident database that can cache transactions and synchronize data with a centralized Oracle database server. It functions as a real-time infrastructure software product intended for the management of low-latency, high-volume data, of events and of transactions.
  • BerkeleyDB, a simple, high-performance, embedded database
  • Oracle Rdb, a legacy relational database for the OpenVMS operating-system
  • MySQL a relational database purchased as part of Oracle Corporation's takeover of its immediate previous owner, Sun Microsystems
  • Oracle NoSQL Database, a scalable, distributed key-value NoSQL database[113]

Use

The Oracle RDBMS has had a reputation among novice users as difficult to install on Linux systems.[citation needed] Oracle Corporation has packaged recent versions for several popular Linux distributions in an attempt to minimize installation challenges beyond the level of technical expertise required to install a database server.[citation needed]

Official support

Users who have Oracle support contracts can use Oracle's "My Oracle Support" or "MOS"[114] web site - known as "MetaLink" until a re-branding exercise completed in October 2010. The support site provides users of Oracle Corporation products with a repository of reported problems, diagnostic scripts and solutions. It also integrates with the provision of support tools, patches and upgrades.

The Remote Diagnostic Agent or RDA[115] can operate as a command-line diagnostic tool executing a script. The data captured provides an overview of the Oracle Database environment intended for diagnostic and trouble-shooting. Within RDA, the HCVE (Health Check Validation Engine)[116] can verify and isolate host system environmental issues that may affect the performance of Oracle software.

Oracle Corporation also endorses certain practices and conventions as enhancing the use of its database products. These include:

  • Oracle Maximum Availability Architecture (MAA)[117] guidelines on developing high-availability systems
  • Optimal Flexible Architecture (OFA), blueprints for mapping Oracle-database objects to file-systems

Oracle Certification Program

The Oracle Certification Program, a professional certification program, includes the administration of Oracle Databases as one of its main certification paths. It contains three levels:

  1. Oracle Certified Associate (OCA)
  2. Oracle Certified Professional (OCP)
  3. Oracle Certified Master (OCM)

User groups

A variety of official (Oracle-sponsored) and unofficial Oracle User Groups has grown up of users and developers of Oracle databases. They include:

Market position

As of 2013 Oracle holds #1 DBMS market share worldwide based on the revenue share ahead of its four closest competitors - IBM , Microsoft, SAP and Teradata. [119]

Competition

In the market for relational databases, Oracle Database competes against commercial products such as IBM's DB2 UDB and Microsoft SQL Server. Oracle and IBM tend to battle for the mid-range database market on UNIX and Linux platforms, while Microsoft dominates the mid-range database market on Microsoft Windows platforms. However, since they share many of the same customers, Oracle and IBM tend to support each other's products in many middleware and application categories (for example: WebSphere, PeopleSoft, and Siebel Systems CRM), and IBM's hardware divisions work closely[citation needed] with Oracle on performance-optimizing server-technologies (for example, Linux on zSeries). The two companies have a relationship perhaps[original research?] best described as "coopetition". Niche commercial competitors include Teradata (in data warehousing and business intelligence), Software AG's ADABAS, Sybase, and IBM's Informix, among many others.

In 2007, competition with SAP AG occasioned litigation from Oracle Corporation.[120]

Increasingly, the Oracle database products compete against such open-source software relational database systems as PostgreSQL, Firebird, and MySQL. Oracle acquired Innobase, supplier of the InnoDB codebase to MySQL, in part to compete better against open source alternatives, and acquired Sun Microsystems, owner of MySQL, in 2010. Database products licensed as open source are, by the legal terms of the Open Source Definition, free to distribute and free of royalty or other licensing fees.

Pricing

Oracle Corporation offers term licensing for all Oracle products. It bases the list price for a term-license on a specific percentage of the perpetual license price. Prospective purchasers can obtain licenses based either on the number of processors in their target machines or on the number of potential seats ("named users").[121]

Enterprise Edition (DB EE)
As of July 2010, the database that costs the most per machine-processor among Oracle database editions, at $47,500 per processor. The term "per processor" for Enterprise Edition is defined with respect to physical cores and a processor core multiplier (common processors = 0.5*cores). e.g. An 8-processor, 32-core server using Intel Xeon 56XX CPUs would require 16 processor licenses.[122][123]
Standard Edition (DB SE)
Cheaper: it can run on up to four processors but has fewer features than Enterprise Edition—it lacks proper parallelization,[124] etc.; but remains quite suitable for running medium-sized applications. There are not additional cost for Oracle RAC on the latest Oracle 11g R2 standard edition release.
Standard ONE (DB SE1 or DB SEO)
Sells even more cheaply, but remains limited to two CPUs. Standard Edition ONE sells on a per-seat basis with a five-user minimum. Oracle Corporation usually sells the licenses with an extra 22% cost for support and upgrades (access to My Oracle Support—Oracle Corporation's support site), which customers must renew annually.
Oracle Express Edition (DB XE) [125] (Oracle XE)
An addition to the Oracle database product family (beta version released in 2005, production version released in February 2006), offers a free version of the Oracle RDBMS, but one limited to 11 GB of user data and to 1 GB of memory used by the database (SGA+PGA).[126] XE will use no more than one CPU and lacks an internal JVM. XE runs only on 32-bit Windows and 64-bit Linux, but not on AIX, Solaris, HP-UX and the other operating systems available for other editions. Support is via a free Oracle Discussion Forum only.

As computers running Oracle often have many multi-core processors (resulting in many cores, all to be licensed), the software price can rise into the hundreds of thousands of dollars. The total cost of ownership often exceeds this, as large Oracle installations usually require experienced and trained database administrators to do the set-up properly. Furthermore, further components must be licensed and paid for, for instance the Enterprise Options used with the databases. Many licensing pitfalls let even rise the costs of ownership.[127] Because of the product's large installed base and available training courses, Oracle specialists in some areas have become a more abundant resource than those for more exotic databases. Oracle frequently provides special training offers for database-administrators.

On Linux, Oracle's certified configurations include Oracle's own Oracle Linux and other commercial Linux distributions (Red Hat Enterprise Linux 3, 4 and 5, SuSE SLES 8, 9, 10 and 11, Asianux), which can cost in a range from a few hundred to a few thousand USD per year (depending on processor architecture and the support package purchased).

The Oracle database system can also install and run on freely available Linux distributions such as the Red Hat-based CentOS,[128] or Debian-based systems.[129]

See also

References

  1. ^ Lextrait, Vincent (January 2010). "The Programming Languages Beacon, v10.0". Retrieved 14 March 2010.
  2. ^ "What's New". Retrieved 29 November 2010.
  3. ^ "Welcome to Larryland". Guardian. Retrieved 19 December 2009.
  4. ^ Bhakthavatsalam, Namrata (August 2008). "Glossary". Oracle Database Client quote = The SID automatically defaults to the database name portion of the global database name (sales in the example sales.us.example.com) until you reach eight characters or enter a period. You can accept or change the default value. Retrieved 17 November 2008. {{cite web}}: Missing pipe in: |work= (help)
  5. ^ McLaughlin, Michael (2011). Oracle Database 11g & MySQL 5.6 Developer Handbook. Osborne Oracle Press. McGraw-Hill Professional. p. 11. ISBN 9780071768856. Retrieved 4 June 2012. The set of programs also lets you start a database instance. They allocate a shared memory realm where other programs process SQL statements. This shared memory realm is the active database instance.
  6. ^ Alapati, Sam R. (2008). Expert Oracle Database 11g Administration. The expert's voice in Oracle. Apress. p. 170. ISBN 978-1-4302-1015-3. Retrieved 7 July 2010. Oracle databases are logically divided into one or more tablespaces. An Oracle tablespace is a logical entity that contains the physical datafiles.
  7. ^ Ashdown, Lance; Kyte, Tom (2011). "Oracle Database Concepts: 11g Release 2 (11.2)". Oracle Corporation. Retrieved 12 July 2013. You can use tablespaces to achieve the following goals: [...] Assign a quota (space allowance or limit) to a database user [...]
  8. ^ Alapati, Sam R. (2004). OCP Oracle Database 10g: New Features for Administrators Exam Guide. McGraw-Hill/Osborne. p. 287. ISBN 0-07-225862-4.
  9. ^ Oracle Corporation, Oracle Database Concepts 11g Release 1 (11.2), http://download.oracle.com/docs/cd/E11882_01/server.112/e25789/glossary.htm#CHDDFGEC, 2011
  10. ^ Watkins, Bob (30 January 2007). "Look inside ASM disk groups with Oracle 10gR2's ASMCMD". techrepublic.com. ZDNet. Retrieved 30 July 2009. In 10g, Oracle introduced a new kind of storage for its database product. Automatic Storage Management (ASM) is a logical volume manager that takes physical disk partitions and manages their contents [...] Until ASM, there were only two choices: file system storage and raw disk storage.
  11. ^ Oracle FAQ
  12. ^ "Known schemas in Oracle". Adp-gmbh.ch. Retrieved 19 December 2009.
  13. ^ "11g Default Schema". ABCdba.com. Retrieved 26 October 2010.
  14. ^ "Optimizer plan stability definition". Adp-gmbh.ch. Retrieved 19 December 2009.
  15. ^ "Oracle's sample schemas". Adp-gmbh.ch. Retrieved 19 December 2009.
  16. ^ "Oracle Architecture, System Global Area". World-class-programme.com. Retrieved 19 December 2009.
  17. ^ Karlsson André. "Oracle DB Architecture - The Basics",
  18. ^ "Oracle architecture, the library cache section". World-class-programme.com. Retrieved 19 December 2009.
  19. ^ "Oracle Architecture, data dictionary cache". World-class-programme.com. Retrieved 19 December 2009.
  20. ^ "Oracle architecture, Program Global Area section". World-class-programme.com. Retrieved 19 December 2009.
  21. ^ PGA Definition, Oracle Database Master Glossary
  22. ^ Bell, Mike (2002). "V$ views - don't leave $HOME without them" (PDF). New York Oracle users Group. pp. 9–10. Retrieved 9 March 2010. X$ tables are fixed tables created in memory at database startup [...] V$ views are created on one or more X$ tables
  23. ^ Tony, Morales; et al. (October 2009). "Overview of the Dynamic Performance Views" (PDF). Oracle Database Reference 11g Release 2 (11.2). Oracle Corporation. pp. 8–1. Retrieved 9 March 2010. V$INDEXED_FIXED_COLUMN displays the columns in dynamic performance tables that are indexed (X$ tables). {{cite web}}: Explicit use of et al. in: |author2= (help) [dead link]
  24. ^ "Oracle Process architecture concepts". Download.oracle.com. Retrieved 19 December 2009.
  25. ^ Antognini, Christian (2008). Troubleshooting Oracle Performance. Apress Series. Apress. p. 71. ISBN 978-1-59059-917-4. Retrieved 5 May 2011.
  26. ^ Carpenter, Larry (2009). Oracle Data Guard 11g Handbook. et al. Oracle Press. p. 173. ISBN 978-0-07-162111-3. Data Guard Monitor (DMON)[:] This Broker-controller process is the main Broker process and is responsible for coordinating all Broker actions as well as maintaining the Broker configuration files. {{cite book}}: |access-date= requires |url= (help)
  27. ^ Debes, Norbert (2009). Secrets of the Oracle Database. Apress series. Apress. p. 173. ISBN 978-1-4302-1952-1. Retrieved 2 May 2011. The job queue is handled by the job queue coordinator process CJQ0 and job queue slave processes (JNNN). {{cite book}}: Cite has empty unknown parameter: |chapterurl= (help)
  28. ^ Safaribooksonline.com Niemiec, Richard (25 June 2007). "1.30. New Background Processes in 10g". Oracle Database 10g Performance Tuning: Tips & Techniques. Oracle Press. p. 967. ISBN 978-0-07-226305-3. Retrieved 12 August 2009. MMON Memory Monitor process is associated with the Automatic Workload Repository new features used for automatic problem detection and self-tuning. MMON writes out the required statistics for AWR on a scheduled basis. {{cite book}}: Cite has empty unknown parameters: |nopp=, |lastauthoramp=, |laydate=, |chapterurl=, |laysummary=, and |separator= (help)
  29. ^ Safaribooksonline.comNiemiec, Richard (25 June 2007). "1.30. New Background Processes in 10g". Oracle Database 10g Performance Tuning: Tips & Techniques. Oracle Press. p. 967. ISBN 978-0-07-226305-3. Retrieved 12 August 2009. M000 These are MMON background slave (m000) processes. {{cite book}}: Cite has empty unknown parameters: |nopp=, |lastauthoramp=, |laydate=, |chapterurl=, |laysummary=, and |separator= (help)
  30. ^ Dyke, Julian; Steve Shaw (2006). Pro Oracle database 10g RAC on Linux: installation, administration, and performance. Apress Series. Apress. p. 45. ISBN 978-1-59059-524-4. Retrieved 5 May 2011. In Oracle 10.1, a queue monitor coordinator (QMNC) process [...] dynamically spawns queue monitor slaves (q000 to q009).
  31. ^ Vallath, Murali (2006). Oracle 10g RAC Grid, Services & Clustering. Digital Press. p. 467. ISBN 9780080492032. Retrieved 14 April 2014. Redo data transmitted from the primary database is received by the remote file server (RFS) process on the standby system, where the RFS process writes the redo data to archived log files or standby redo log files.
  32. ^ Cyran, Michele; Paul Lane (2005). "Process Architecture". Oracle Database Concepts. Oracle Corporation. Retrieved 13 August 2008. When a user runs an application program (such as a Pro*C program) or an Oracle tool (such as Enterprise Manager or SQL*Plus), Oracle creates a user process to run the user's application.
  33. ^ Cyran, Michele; Paul Lane (2005). "Process Architecture". Oracle Database Concepts. Oracle Corporation. Retrieved 13 August 2008. A connection is a communication pathway between a user process and an Oracle instance.
  34. ^ Cyran, Michele; Paul Lane (2005). "Process Architecture". Oracle Database Concepts. Oracle Corporation. Retrieved 13 August 2008. A session is a specific connection of a user to an Oracle instance through a user process
  35. ^ Morales, Tony (2008). "V$SESSION". Oracle Database Reference 11g Release 1 (11.1). Oracle. Retrieved 17 November 2008.
  36. ^ Chan, Immanuel (July 2008). "Glossary". Oracle Database Performance Tuning Guide 11g Release 1 (11.1). Oracle Corporation. Retrieved 29 April 2009. enqueue[:] This is another term for a lock.
  37. ^ "Oracle Database Master Glossary: 11g Release 1 (11.1)". Oracle Corporation. Retrieved 24 April 2009. latch[:] A simple, low-level serialization mechanism to protect shared data structures in the System Global Area.
  38. ^ Strohm, Richard; et al. (October 2008). "Parameter Files". Oracle Database Concepts 11g Release 1 (11.1). Oracle Corporation. Retrieved 14 July 2009. Parameter files contain a list of configuration parameters for that instance and database. {{cite web}}: Explicit use of et al. in: |author2= (help)
  39. ^ Strohm, Richard; et al. (October 2008). "Initialization Parameter Files and Server Parameter Files". Oracle Database Concepts 11g Release 1 (11.1). Oracle Corporation. Retrieved 14 July 2009. {{cite web}}: Explicit use of et al. in: |author2= (help)
  40. ^ Morales, Tony; et al. (April 2009). "V$PARAMETER". Oracle Database Reference 11g Release 1 (11.1). Oracle Corporation. Retrieved 14 July 2009. V$PARAMETER displays information about the initialization parameters that are currently in effect for the session. {{cite web}}: Explicit use of et al. in: |author2= (help)
  41. ^ Morales, Tony; et al. (April 2009). "V$SPPARAMETER". Oracle Database Reference 11g Release 1 (11.1). Oracle Corporation. Retrieved 14 July 2009. V$SPPARAMETER displays information about the contents of the server parameter file. {{cite web}}: Explicit use of et al. in: |author2= (help)
  42. ^ Bryla, Bob; Thomas, Biju (2006). OCP: Oracle 10g New Features for Administrators Study Guide: Exam 1Z0-040. John Wiley & Sons. p. 95. ISBN 9780782150858. Retrieved 10 October 2013. Oracle 10g includes a [...] scheduling mechanism to automate routine tasks. [...] It is a collection of procedures and functions in the DBMS_SCHEDULER package. The earlier versions of Oracle included the DBMS_JOB program to schedule jobs; this utility is still available in Oracle 10g.
  43. ^ Ingram, Geoff (2002). High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability. John Wiley & Sons. pp. 354–355. ISBN 9780471430346. Retrieved 15 January 2014. Oracle Resource Manager is [...] designed to ensure that CPU resources can be allocated fairly between groups of users on a single instance [...]
  44. ^ Lungu, Ion; Vătuiu, Teodora (2008). Bolunduţ, Ioan-Lucian (ed.). "Manageability comparison: Oracle Database 10g and Oracle9i Database" (PDF). Annals of the University of Petroşani, Economics. 8 (1). Petroşani, Romania: Universitas Publishing House: 295-300. ISSN 1582-5949. Retrieved 6 March 2014. [...] we performed a basic and common DBA tasks on the two products and measured the time taken and the steps required to complete each task, to assess their relative manageability.
  45. ^ "Locale Languages". Retrieved 26 February 2008.
  46. ^ "Error Message Languages". Retrieved 26 February 2008.
  47. ^ Arju, Md. Abdul; et al. (November 2010). "A complete RMAN shell script backup for Oracle 8i, 9i, 10g, 11g". A complete RMAN shell script backup for Oracle 8i, 9i, 10g, 11g. Md.Abdul Arju. Retrieved 7 November 2010. A complete RMAN backup shell script that will work regardless of most used oracle version as well as most used unix operating system. In this script it is assumed that you are using recovery catalog for you rman backup. {{cite web}}: Cite has empty unknown parameter: |dateformat= (help); Explicit use of et al. in: |author2= (help)
  48. ^ Shea, Cathy; et al. (September 2007). "Overview of Globalization Support". Oracle Database Globalization Support Guide 11g Release 1 (11.1). Oracle Corporation. Retrieved 16 February 2009. In the past, Oracle referred to globalization support capabilities as National Language Support (NLS) features. NLS is actually a subset of globalization support. NLS is the ability to choose a national language and store data in a specific character set. Globalization support enables you to develop multilingual applications and software products that can be accessed and run from anywhere in the world simultaneously. {{cite web}}: Cite has empty unknown parameter: |dateformat= (help); Explicit use of et al. in: |author2= (help)
  49. ^ http://www.oracle.com/us/corporate/profit/p27anniv-timeline-151918.pdf
  50. ^ As Larry Ellison said in an Oracle OpenWorld keynote presentation on 11 November 2007: "Who'd buy a version 1.0 from four guys in California?"
  51. ^ a b c d e Oracle.com
  52. ^ "Oracle Timeline". Retrieved 21 March 2013. Oracle Version 4 is released with a new feature called "read consistency," which assures that a query will have a consistent set of data during execution.
  53. ^ Webster, Robin (13 November 1984). "PC Relational Database? New Answer Is Oracle". PC Magazine. p. 57. Retrieved 25 October 2013.
  54. ^ Compare Oracle.com
  55. ^ Harrison, Guy (2001). Oracle SQL high-performance tuning. Prentice Hall PTR Oracle series (2 ed.). Prentice Hall PTR. p. 630. ISBN 978-0-13-012381-7. Retrieved 20 January 2011. Aurora[:] The name of the Java Virtual Machine (JVM) incorporated into Oracle8i.
  56. ^ Gennick, Jonathan (2004). Oracle SQL*Plus: The Definitive Guide. Definitive Guides (2 ed.). O'Reilly Media, Inc. p. 592. ISBN 9780596007461. Retrieved 3 August 2012. iSQL*Plus was expanded to most other operating systems in 2002 with the release of Oracle 9i Database Release 2.
  57. ^ "Oracle Database 10g Sets New Record for TPC-H Three TB Benchmark". Retrieved 31 January 2008.
  58. ^ "Oracle Announces General Availability of Oracle Database 12c, the First Database Designed for the Cloud" (Press release). Redwood Shores, California: Oracle Corporation. 1 July 2013. Retrieved 9 September 2013. Oracle Database 12c is a next-generation database [...] providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform.
  59. ^ Baransel, Emre (2013). Oracle Data Guard 11gR2 Administration Beginner's Guide. Packt Publishing Ltd. ISBN 9781849687911. Retrieved 15 January 2014. You should not get confused between Critical Patch Update (CPU) and Security Patch Update (SPU) as CPU terminology has been changed to SPU from October 2012.
  60. ^ theregister.co.uk: Oracle gears up for infrastructure cloud and 12c database launches • The Register
  61. ^ Llewellyn, Bryn (July 2009). "Edition-Based Redefinition" (PDF). Redwood Shores, California: Oracle Corporation. p. 45. Retrieved 9 March 2010. An edition is a [...] nonschema object type, uniquely identified [...] by just its name.
  62. ^ Enterprise Edition
  63. ^ Standard Edition
  64. ^ Standard Edition One
  65. ^ Teodora, Vatuiu (27 December 2008). "Technologies solutions and Oracle instruments used in the accomplishment of executive informatics systems (EIS)" (PDF). MPRA: Munich Personal RePEc Archive. pp. 1555–1559. Retrieved 9 May 2011. Oracle Database 10g Standard Edition One (SE1) is intended for business mediums with quite a low request of adaptation[...]
  66. ^ "Oracle Database 10g Express Edition". Oracle Technology Network. Oracle Corp. Retrieved 25 July 2010. Oracle Database 10g Express Edition (Oracle Database XE) is an entry-level, small-footprint database based on the Oracle Database 10g Release 2 code base that's free to develop, deploy, and distribute [...]
  67. ^ "Oracle Express Edition". Retrieved 21 February 2013. [...] this topic uses Oracle® 10g Express Edition. [...] User data cannot exceed 4 gigabytes in size (in addition to Oracle system data).
  68. ^ "Oracle Data Sheet" (PDF). Retrieved 19 December 2009.
  69. ^ Niemiec, Richard (2012). Oracle Database 11g Release 2 Performance Tuning Tips & Techniques. Osborne Oracle Press. McGraw-Hill Professional. p. 47. ISBN 9780071780261. Retrieved 20 February 2013. [...] Oracle 11g Express Edition Released (September 24, 2011).
  70. ^ Kanaracus, Chris (4 April 2011). "Oracle releases beta for Express Edition of 11g database". Computerworld. Computerworld Inc. Retrieved 21 February 2013. [...] no more than 11 GB of user data can be placed in an XE database, and it can use no more than 1 GB of RAM [...]
  71. ^ Aust, Dietmar; Kubicek, Denes; Pokolm, Jens-Christian (2010). Oracle APEX und Oracle XE in der Praxis (in German). Hüthig Jehle Rehm. p. 295. ISBN 9783826655494. Retrieved 3 July 2014. Java in der Databank (nicht von Oracle XE unterstutzt) [...] Java-Klassen oder auch komplette Bibliotheken koennen in der Databank mit dem Kommando loadjava installiert werden. {{cite book}}: Unknown parameter |trans_title= ignored (|trans-title= suggested) (help)
  72. ^ "Oracle Database Lite 10g". oracle.com. Oracle Corporation. Retrieved 23 June 2009. [...] for developing, deploying and managing applications for mobile and embedded environments.
  73. ^ Greenwald, Rick; Stackowiak, Robert; Stern, Jonathan (2007). Oracle Essentials: Oracle Database 11g. Essential Series (4 ed.). O'Reilly Media. p. 386. ISBN 978-0-596-51454-9. Retrieved 8 June 2010. Today, Oracle offers other embedded databases including TimesTen, Berkeley DB, and Oracle Database Lite.
  74. ^ Oracle Database Online Documentation 11g Release 2 (11.2)
  75. ^ "Oracle Rdb and Oracle Database on OpenVMS Product Update" (PDF). Kevin Duffy, Senior Director of Software Development, Oracle Corporation. Retrieved November 2012. {{cite web}}: Check date values in: |accessdate= (help)
  76. ^ Martin, Christopher (2011). "Hybrid Columnar Compression And Oracle Storage" (PDF). Oracle Corporation. p. 1. Retrieved 7 February 2013. Oracle Database Hybrid Columnar Compression is included at no extra cost with the Sun ZFS Storage Appliance and Pillar Axiom Storage System [...] Oracle's Hybrid Columnar Compression technology [...] utilizes a combination of both row and columnar methods for storing data. This approach [...] achieves the compression benefits of columnar storage, while avoiding the performance shortfalls of a pure columnar format.
  77. ^ "Oracle and Secerno". Oracle Corporation. 2010. Retrieved 18 October 2010. Secerno product[:] Oracle Database Firewall
  78. ^ "Oracle Database Fiorewall: Frequently Asked Questions". Oracle Technology Network. Oracle Corporation. Retrieved 28 March 2011. It is designed to prevent SQL Injection attacks [...] It is [...] deployed on the network to monitor and secures database traffic coming through the network.
  79. ^ Oracle database options
  80. ^ Alapati, Sam R.; Charles Kim (2007). Oracle database 11g: new features for DBAs and developers. Expert's voice in Oracle. Apress. p. 602. ISBN 978-1-59059-910-5. Retrieved 10 May 2011.
  81. ^ Adkoli, Anand; Rama Velpuri (2002). Oracle9i for Windows handbook. Oracle Press Series (2 ed.). McGraw-Hill Professional. p. 528. ISBN 978-0-07-219092-2. Retrieved 26 January 2011. Oracle Change Management Pack[:] A new feature available on Oracle9i allows you to track and make changes to database object definitions. You can compare two objects in different schemas or different databases.
  82. ^ Choi, Phil (2005). "Oracle Database Change Management Pack". Oracle Enterprise Manager Concepts, 10g Release 2 (10.2). Oracle Corporation. Retrieved 26 January 2011. This pack gives database administrators the ability to evaluate, plan for, and implement database schema changes to support new application requirements without error and data loss while minimizing downtime.
  83. ^ "Oracle Application Express 4.1". apex.oracle.com. Oracle Corporation. Retrieved 9 January 2012. Oracle Application Express is a no-cost option of the Oracle database.
  84. ^ "Oracle Multitenant". Oracle Corporation. Retrieved 23 October 2013. A new option for Oracle Database 12c, Oracle Multitenant [...] is supported by a new architecture that allows a multitenant container database to hold many pluggable databases.
  85. ^ See download.oracle.com/docs/cd/B28359_01/license.111/b28287/options.htm#CIHBDGAD
  86. ^ "Real Application Testing Overview" (PDF). Oracle Corporation. August 2007. Retrieved 19 May 2008.
  87. ^ Shaharear, Mohammad Hasan; et al. (December 2008). "installation of Oracle Text on 10g". installation of Oracle Text on 10g. Mohammad Hasan Shaharear. Retrieved 8 December 2011. installation of Oracle Text on 10g {{cite web}}: Cite has empty unknown parameter: |dateformat= (help); Explicit use of et al. in: |author2= (help)
  88. ^ See "Term licenses" at http://oraclestore.oracle.com/ for various markets/countries.
  89. ^ "The Licensing Of Oracle Technology Products". OMT-CO Operations Management Technology Consulting GmbH. Retrieved 26 June 2013.
  90. ^ "Oracle Programmer/2000" (PDF). Oracle Corporation. Retrieved 25 February 2009. Oracle Programmer/2000 is a suite of programmatic interfaces that allows you to access and manipulate Oracle7 data and schemas. Programmer/2000 provides a rich set of interfaces and supports many programming languages, allowing the programmer to use the programming language and the programming paradigm of choice. {{cite web}}: Cite has empty unknown parameter: |dateformat= (help)
  91. ^ "Other Ways of Working with Oracle". Oracle Corporation. Retrieved 25 February 2009. Programmer/2000[:] a set of 3GL programming language interfaces {{cite web}}: Cite has empty unknown parameter: |dateformat= (help)
  92. ^ Desbiens, Frédéric; Peter Moskovits; Philipp Weckerle (2009). Oracle WebCenter 11g Handbook: Build Rich, Customizable Enterprise 2.0 Applications. Osborne ORACLE Press Series. McGraw Hill Professional. p. 189. ISBN 978-0-07-162932-4. Retrieved 9 May 2011. Oracle WebCenter Suite includes Content Server [...] {{cite book}}: Invalid |nopp=498 (help); Unknown parameter |nopp= ignored (|no-pp= suggested) (help)
  93. ^ Alapati, Sam R. (2005). Expert Oracle database 10g administration. Apress. p. 845. ISBN 978-1-59059-451-3. Retrieved 25 May 2009. ... ASH records very recent session activity (within the last five or ten minutes). {{cite book}}: Cite has empty unknown parameters: |nopp=, |lastauthoramp=, |laydate=, |laysummary=, |chapterurl=, and |separator= (help)
  94. ^ Sai Peck lee; Džemal Zildžić (2006). "Oracle Database Workload Performance Measurement and Tuning Toolkit". Issues in Informing Science and Information Technology. 3: 371–381. Retrieved 5 February 2010. Statspack utility consists of a set of Programming Language/Structured Query Language (PL/SQL) scripts, executed against the database to gather, store data and metrics, and generate reports database activity reports
  95. ^ "Overview of Oracle Data Pump". Download.oracle.com. Retrieved 19 December 2009.
  96. ^ Greenwald, Rick; Robert Stackowiak; Jonathan Stern (November 2007). Oracle Essentials: Oracle Database 11g. O'Reilly. p. 184. ISBN 978-0-596-51454-9. The Database Resource Manager (DRM) was first introduced in Oracle 8i [...] to place limits on the amount of computer resources that can be used [...] {{cite book}}: Cite has empty unknown parameters: |origmonth= and |chapterurl= (help)
  97. ^ Ault, Mike; Liu, Daniel; Tumma, Madhu (2003). Don Burleson (ed.). Oracle Database 10g New Features: Oracle 10g Reference for Advanced Tuning & Administration. Oracle In-Focus series. Rampant TechPress. p. 544. ISBN 978-0-9740716-0-2. Retrieved 16 November 2011. In the fast-start parallel rollback method, the background process SMON [...] rolls back a set of transactions in parallel [...] This feature is particularly useful when a system has transactions that run a long time before committing [...]
  98. ^ "Feature Availability by Edition". Oracle Database Licensing Information 11g Release 1 (11.1) Part Number B28287-08. Oracle Corporation. May 2008. Retrieved 19 August 2008.
  99. ^ Nanda, Arup. "Auditing Tells All". Oracle Database 10g: The Top 20 Features for DBAs. Oracle Corporation. Retrieved 19 August 2008. ...the standard audit (available in all versions) and the fine-grained audit (available in Oracle 9i and up ...
  100. ^ Oracle.com
  101. ^ "Oracle Product Accessibility Status: Database Server Enterprise Edition". Oracle Corporation. 2 June 2008. Retrieved 14 April 2009.
  102. ^ "Oracle Data Provider for .NET". Oracle Corporation. Retrieved 7 May 2009. The Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database.
  103. ^ "Oracle Multimedia". www.oracle.com. Oracle Technology Network. Retrieved 12 December 2013. Oracle Multimedia is a feature that enables Oracle Database to store, manage, and retrieve multimedia data in an integrated manner with other enterprise information.
  104. ^ Greenwald, Rick; Stackowiak, Robert; Alam, Maqsood; Bhuller, Mans (2011). Achieving Extreme Performance with Oracle Exadata. Osborne ORACLE Press Series. McGraw-Hill Prof Med/Tech. p. 432. ISBN 978-0-07-175259-6. Retrieved 12 October 2011. The UCP is a Java-basd connection pool that supports JDBC, the Lightweight Directory Access Protocol (LDAP) and Java EE Connector Architecture (JCA) connection types from any middle tier.
  105. ^ "Virtual Private Database" appears listed as a feature available as part of Oracle Enterprise Edition in: Manmeet Ahluwalia; et al. (October 2009). "Feature Availability by Edition". Oracle Database Licensing Information 11g Release 2 (11.2). Oracle Corporation. Retrieved 9 February 2010. {{cite web}}: Explicit use of et al. in: |author2= (help)
  106. ^ Kate, Aniket; Menezes, Bernard; Singh, Ashish (December 2005). "Proceedings of 3rd International Conference on E-Governance, ICEG 2005" (PDF). Lahore: Lahore University of Management Sciences: 156–159. Retrieved 9 February 2010. Oracle's Virtual Private Database (VPD) [...] is a practically implemented model for fine-grained access control wherein one or more security policies are attached to each table and view in the database. These polices are sets of functions coded in PL/SQL, C or Java. A user query that accesses a table or view having a security policy, is dynamically and transparently modified by appending a predicate. This predicate is returned by the policy function for the relation/view and is a function of the user who has fired the query. A secure application context is created for each user at log in. {{cite journal}}: |contribution= ignored (help); Cite journal requires |journal= (help)
  107. ^ Evdoridis, Theodoros; Tzouramanis, Theodoros (2007). "A Generalized Comparison of Open Source and Commercial Database management Systems". In St. Amant, Kirk; Still, Brian (eds.). Handbook of Research on Open Source Software: Technological, Economic, and Social Perspectives. IGI Global research collection. Idea Group Inc (IGI). pp. 294–308. ISBN 9781591408925. Retrieved 20 February 2013. Oracle Corporation has started a drive toward wizard-driven environments with a view to enabling non-programmers to produce simple data-driven applications.
  108. ^ Shaw, John; Dyke, Julian (2006). Pro Oracle Database 10g RAC on Linux: Installation, Administration, and Performance. Expert's Voice in Oracle. Apress. p. 54. ISBN 9781430202141. Retrieved 22 January 2012. The Database Upgrade Assistant (DBUA) is a GUI tool that guides you through the various steps in the upgrade process and configures the database for the target release.
  109. ^ Freeman, Robert (2004). Oracle Database 10g New Features. Osborne ORACLE Press Series. McGraw Hill Professional. p. 4. ISBN 9780072229479. Retrieved 22 January 2014. The DBUA is a GUI that is designed for upgrading your Oracle database [...]
  110. ^ Iyer, Venkatasubramaniam (August 2006). "9 Oracle Database Java Application Performance". Oracle Database Java Developer's Guide: 10g Release 2 (10.2). et al. Redwood City: Oracle USA, Inc. Retrieved 29 July 2013. Native compilation provides a speed increase ranging from two to ten times the speed of the bytecode interpretation.
  111. ^ Kuhn, Darl; Kim, Charles; Lopuz, Bernard (2008). Linux Recipes for Oracle DBAs. Apress Series. Apress. p. 501. ISBN 978-1-4302-1575-2. Retrieved 5 December 2011. OPatch is a collection of Perl scripts and Java classes providing the capability to apply and roll back interim (one-off) patches to an Oracle database environment.
  112. ^ Charalambides, Stelios (2013). Oracle SQL Tuning with Oracle SQLTXPLAIN. Apress. p. 1. ISBN 9781430248101. Retrieved 17 June 2013. [...] fast Oracle SQL tuning with SQLTXPLAIN, or SQLT as it is typically called [...]
  113. ^ Taft, Darryl K (18 October 2011). "Oracle to Boost Data Management With Endeca Buy". eWeek. Ziff Davis. Retrieved 3 November 2011. Oracle also announced the Oracle NoSQL Database, a distributed, highly scalable, key-value database.
  114. ^ Kuhn, Darl; Alapati, Sam; Nanda, Arup (2013). RMAN Recipes for Oracle Database 12c: A Problem-Solution Approach. Expert's voice in Oracle. Apress. p. 534. ISBN 9781430248361. Retrieved 7 July 2014. Search Oracle's My Oracle Support (MOS) web site at http://support.oracle.com.
  115. ^ "Advanced MetaLink" (PDF). Retrieved 19 December 2009.
  116. ^ Rea, Stephen (16 September 2008). "Upgrading Oracle 9.2.0.6 to 10.2.0.3 on AIX 5.2". University of Arkansas. Retrieved 11 August 2009. Run the PreInstall checklist for Oracle 10.2.0 (Metalink Note 250262.1: RDA 4 - Health Check / Validation Engine Guide): The Health Check Validation Engine (HCVE) rule set for Oracle Database 10g R2 (10.2.0) PreInstall (AIX) is described in: Oracle.com {{cite web}}: External link in |quote= (help)
  117. ^ "oracle maximum availability architecture News and Other Resources | TechRepublic". Search.techrepublic.com.com. Retrieved 26 July 2012.
  118. ^ "Oracle Users Group Groups". Morganslibrary.org. Retrieved 26 July 2012.
  119. ^ [1] ("Oracle Market Share")
  120. ^ About the case in Hungarian
  121. ^ Kreines, David C. (2005). Oracle DBA Pocket Guide. Pocket References Series. O'Reilly Media, Inc. p. 145. ISBN 978-0-596-10049-0. Retrieved 10 August 2010. Oracle products are currently licensed using two different licensing models: Per Named User. [...] Per Processor [...]
  122. ^ "Oracle Technology Global Price List" (PDF). Oracle Corporation. 14 June 2010. Retrieved 13 July 2010.
  123. ^ "Processor Core Factor Table" (PDF). Retrieved 8 April 2011.
  124. ^ Oracle Database Licensing Information Database Editions
  125. ^ "overview". Oracle.com. Retrieved 26 July 2012.
  126. ^ Licensing Restrictions
  127. ^ "Top 60 Licensing Pitfalls for Oracle Databases and Oracle Technology Products". OMTCO Operations Management Technology Consulting GmbH. Retrieved 17 April 2013.
  128. ^ "Installation centos; official Oracle Wiki". Wiki.oracle.com. Retrieved 19 December 2009.
  129. ^ "Installation on Debian-based systems; official Oracle Wiki". Wiki.oracle.com. Retrieved 19 December 2009.

Bibliography