Citizendia
Your Ad Here

Oracle Database
Developed by Oracle Corporation
Initial release 1979
Latest release 11g / 11 July 2007
Written in C
OS Cross-platform (List)
Available in Multiple languages
Genre RDBMS
License Proprietary
Website http://www.oracle.com/

The relational database management system (RDBMS) officially called Oracle Database (and commonly referred to as Oracle RDBMS or simply as Oracle) has become a major presence in database computing. A software developer is a person or organization concerned with facets of the software development process wider than design and coding a somewhat broader scope of Oracle Corporation ( specializes in developing and marketing Enterprise software products — particularly Database management systems In 2007 Oracle ranked A software release is the distribution whether public or private of an initial or new and upgraded version of a Computer software product Events 911 - Signing of the Treaty of Saint-Clair-sur-Epte between Charles the Simple and Rollo of Normandy. Year 2007 ( MMVII) was a Common year starting on Monday of the Gregorian calendar in the 21st century. A programming language is an Artificial language that can be used to write programs which control the behavior of a machine particularly a Computer. tags please moot on the talk page first! --> In Computing, C is a general-purpose cross-platform block structured An operating system (commonly abbreviated OS and O/S) is the software component of a Computer system that is responsible for the management and coordination In computing cross-platform (also known as multi-platform) is a term used to refer to Computer software or computing methods and concepts that are implemented A language is a dynamic set of visual auditory or tactile Symbols of Communication and the elements used to manipulate them Computer software can be organized into categories based on common function type or field of use A Relational database management system (RDBMS is a Database management system (DBMS that is based on the Relational model as introduced by E A software license (or software licence in commonwealth usage is a Legal instrument governing the usage or redistribution of copyright protected software The word proprietary indicates that a party or proprietor exercises private Ownership, control or use over an item of Property. A website (alternatively web site or Web site, a back-construction from the Proper noun World Wide Web) is a collection of Web pages A Relational database management system (RDBMS is a Database management system (DBMS that is based on the Relational model as introduced by E A Computer Database is a structured collection of records or data that is stored in a computer system Computing is usually defined like the activity of using and developing Computer technology Computer hardware and software. Oracle Corporation produces and markets this software. Oracle Corporation ( specializes in developing and marketing Enterprise software products — particularly Database management systems In 2007 Oracle ranked

Larry Ellison and his friends and former co-workers Bob Miner and Ed Oates started the consultancy Software Development Laboratories (SDL) in 1977. Lawrence Joseph "Larry" Ellison (born August 17, 1944) is an American entrepreneur and the co-founder and CEO of Oracle Corporation Bob Miner (1942-1994 co-founded Software Development Labs in August 1977 with Larry Ellison, and Ed Oates. Ed Oates (1946- co-founded Software Development Labs in August 1977 with Larry Ellison, and Bob Miner. 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. near as long as it used to be several months ago It has been actively summarized and split into sub-articles and there is a dynamic talk page discussion of all Ampex ( is an American electronics company founded in 1944 by Alexander M

Contents

Physical and logical structuring in Oracle

An Oracle database system comprises at least one instance of the application, along with data storage. An instance comprises a set of operating-system processes and memory-structures that interact with the storage. In computing a process is an instance of a Computer program that is being sequentially executed by a computer system that has the ability to run several computer Computer data storage, often called storage or memory, refers to Computer components devices and recording media that retain digital Computer data storage, often called storage or memory, refers to Computer components devices and recording media that retain digital Typical processes include PMON (the process monitor) and SMON (the system monitor).

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 Computer science, a cache (kæʃ like "cash") is a collection of data duplicating original In addition to storage, the database consists of online redo logs (which hold transactional history). A database transaction is a unit of work performed against a Database management system or similar system that is treated in a coherent and reliable way independent of other Processes can in turn archive the online redo logs into archive logs (offline redo logs), which provide the basis (if necessary) for data recovery and for some forms of data replication. An archive refers to a collection of historical records and also refers to the location in which these records are kept Data recovery is the process of salvaging data from damaged failed corrupted or inaccessible secondary storage media when it cannot be accessed normally Replication is the process of sharing information so as to ensure consistency between redundant resources such as Software or Hardware components to improve reliability

The Oracle RDBMS stores data logically in the form of tablespaces and physically in the form of data files. A data storage device is a device for recording (storing information (data A tablespace is a storage location where the actual data underlying Database objects can be kept A computer file is a block of Arbitrary Information, or resource for storing information which is available to a Computer program and is usually Tablespaces can contain various types of memory segments; for example, Data Segments, Index Segments etc. In computing memory segmentation is one of the most common ways to achieve Memory protection; another common one is Paging. Segments in turn comprise one or more extents. Extents comprise groups of contiguous data blocks. Data blocks form the basic units of data storage. At the physical level, data-files comprise one or more data blocks, where the block size can vary between data-files. In Computing (specifically data transmission and data storage) block is a sequence of Bytes or Bits having a nominal length (a block size

Oracle database management keeps track of its computer data storage with the help of information stored in the SYSTEM tablespace. Computer data storage, often called storage or memory, refers to Computer components devices and recording media that retain digital The SYSTEM tablespace contains the data dictionary — and often (by default) indexes and clusters. A data dictionary, as defined in the IBM Dictionary of Computing is a "centralized repository of information about data such as meaning relationships to other data origin A database index is a Data structure that improves the speed of operations on a database table. (A data dictionary consists of a special collection of tables that contains information about all user-objects in the database). In Relational databases and Flat file databases a table is a set of data elements (values that is organized using a model of vertical columns (which are In its simplest embodiment an object is an allocated region of storage Since version 8i, the Oracle RDBMS also supports "locally managed" tablespaces which can store space management information in bitmaps in their own headers rather than in the SYSTEM tablespace (as happens with the default "dictionary-managed" tablespaces).

If the Oracle database administrator has instituted Oracle RAC (Real Application Clusters), then multiple instances, usually on different servers, attach to a central storage array. A database administrator ( DBA) is a person who is responsible for the environmental aspects of a Database. In Database Computing, Oracle Real Application Clusters (RAC — an option for the Oracle Database software produced by Oracle Corporation A server is a Computer dedicated to providing one or more services over a computer network typically through a request-response routine A disk array is a Disk storage system which contains multiple Disk drives It is differentiated from a Disk enclosure, in that an array has Cache This scenario offers numerous advantages, most importantly performance, scalability and redundancy. However, support becomes more complex, and many sites do not use RAC. In version 10g, grid computing has introduced shared resources where an instance can use (for example) CPU resources from another node (computer) in the grid. Grid computing is a form of Distributed computing whereby a "super and virtual computer" is composed of a cluster of networked loosely-coupled

The Oracle DBMS can store and execute stored procedures and functions within itself. A stored procedure is a Subroutine available to applications accessing a relational database system. In Computer science, a subroutine ( function, method, procedure, or subprogram) is a portion of code within a larger 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. PL/SQL (Procedural Language/Structured Query Language is Oracle Corporation 's proprietary procedural extension to the SQL database language, used

Database schema

Oracle database conventions refer to defined groups of ownership (generally associated with a "username") as schemas. The schema (pronounced skee -ma) of a Database system is its structure described in a formal language supported by the Database management system

Most Oracle database installations traditionally come with a default schema called SCOTT. After the installation process has set up the 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[1].

The SCOTT schema has seen less use as it uses so few of the features of a modern release of Oracle. Most recent examples reference the default HR or OE schemas.

Other default schemas[2] include:

Tablespaces

Default tablespaces include:

Memory architecture

System Global Area

Main article: System Global Area

Each Oracle instance uses a System Global Area or SGA — a shared-memory area — to store its data and control-information. A tablespace is a storage location where the actual data underlying Database objects can be kept In the Database management systems developed by the Oracle Corporation, the System Global Area ( SGA) forms the part of the RAM shared by all the In the Database management systems developed by the Oracle Corporation, the System Global Area ( SGA) forms the part of the RAM shared by all the In Computing, shared memory is a memory that may be simultaneously accessed by multiple programs with an intent to provide communication among them or avoid redundant copies [5]

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:

Library cache

The library cache[6] 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. A data dictionary, as defined in the IBM Dictionary of Computing is a "centralized repository of information about data such as meaning relationships to other data origin

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

The Oracle instance frequently accesses the data dictionary in order to parse SQL statements. In Computer science and Linguistics, parsing, or more formally syntactic analysis, is the process of analyzing a sequence of tokens to The operation of Oracle depends on ready access to the data dictionary: performance bottlenecks in the data dictionary affect all Oracle users. Because of this, database administrators should make sure that the data dictionary cache[7] 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 problems.

Program Global Area

The Program Global Area[8] or PGA memory-area 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:

Process architecture

The Oracle RDBMS typically relies on a group of processes running simultaneously in the background and interacting to further and monitor database operations. The background, in the context of Computer software processes, refers in general to processes that are running with a relatively low priority require little or no Such processes (and their standard abbreviations) can include:[9]

Languages

Oracle Database software comes in 63 language-versions (including regional variations such as American and British). The software which Oracle Corporation markets as Oracle Data Guard forms an extension to the Oracle RDBMS. Variations between versions cover the names of days and months, abbreviations, time-symbols such as A. M. and A. D. , and sorting[10].

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

History

Corporate/technical timeline

Version numbering

Oracle products have historically followed their own release-numbering and naming conventions. With the Oracle RDBMS 10g release, Oracle Corporation started standardizing all current versions of its major products using the "10g" label, although some sources continued to refer to Oracle Applications Release 11i as Oracle 11i. Major database-related products and some of their versions include:

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

The version numbering syntax within each release follows the pattern: major. Year 2007 ( MMVII) was a Common year starting on Monday of the Gregorian calendar in the 21st century. 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 Administrator's Guide offers further information on Oracle release numbers. Oracle Corporation provides a table[20] showing the latest patch-set releases by major release, operating-system, and hardware-architecture.

List of claimed firsts

Oracle Corporation claims to have provided:

Editions

Over and above the different versions of the Oracle database management software, Oracle Corporation subdivides its product into varying "editions" - apparently for marketing and license-tracking reasons. In Computing, symmetric multiprocessing or SMP involves a Multiprocessor computer-architecture where two or more identical processors can connect to a single A distributed database is a Database that is under the control of a central Database management system (DBMS in which storage devices are not all attached '64-bit' CPUs have existed in Supercomputers since the 1960s and in RISC -based workstations and servers since the early 1990s. A Java Virtual Machine ( JVM) is a set of computer software programs and data structures which use a Virtual machine A Relational database management system (RDBMS is a Database management system (DBMS that is based on the Relational model as introduced by E Linux (commonly pronounced ˈlɪnəks Don't change "Extensible" In approximate order of decreasing scale, we find:

Host platforms

Prior to releasing Oracle9i, Oracle Corporation ported the database engine to a wide variety of platforms. More recently, Oracle Corporation has consolidated on a smaller range of operating system platforms.

As of October 2006, Oracle Corporation supported the following operating systems and hardware platforms for Oracle Database 10g:

Related software

For links to some of Oracle Corporation's software which integrates with Oracle databases, see the Oracle Corporation category and the Oracle software category pages. Year 2006 ( MMVI) was a Common year starting on Sunday of the Gregorian calendar. Apple Inc, ( formerly Apple Computer Inc, is an American Multinational corporation with a focus on designing and manufacturing Consumer electronics Mac OS X Server is the server-oriented version of Apple 's Operating system, Mac OS X. PowerPC is a RISC Instruction set architecture created by the 1991 Apple – IBM – Motorola alliance known as AIM HP-UX (Hewlett Packard UniX is Hewlett-Packard 's proprietary implementation of the Unix Operating system, based on System V (initially PA-RISC is a Microprocessor architecture developed by Hewlett-Packard 's Systems & VLSI Technology Operation. Itanium is the brand name for 64-bit Intel Microprocessors that implement the Intel Itanium architecture (formerly called IA-64) Tru64 UNIX is a 64-bit UNIX Operating system for the Alpha Microprocessor architecture currently owned by Hewlett-Packard Alpha, originally known as Alpha AXP, was a 64-bit Reduced instruction set computer (RISC Instruction set architecture (ISA developed Open Virtual Memory System ( OpenVMS) initially known just as Virtual Memory System ( VMS) is the name of a High-end Computer server International Business Machines Corporation abbreviated IBM and nicknamed "Big Blue", is a multinational Computer Technology POWER is a RISC Instruction set architecture designed by IBM. z/OS is a 64-bit Operating system for Mainframe computers, created by IBM. IBM System z, or earlier IBM eServer zSeries, is a brand name designated by IBM to all its Mainframe computers In 2000 IBM rebranded the existing Linux (commonly pronounced ˈlɪnəks See also X86 assembly language The generic term x86 refers to the most commercially successful Instruction set architecture in the history of Personal x86-64 is a Superset of the x86 instruction set architecture. Microsoft Corporation is an American multinational Computer technology Corporation, which rose to dominate the Home computer Microsoft Windows is a series of Software Operating systems and Graphical user interfaces produced by Microsoft. Sun Microsystems Inc ( is a multinational vendor of Computers computer components Computer software, and Information technology services Solaris is a Unix -based Operating system introduced by Sun Microsystems in 1992 as the successor to SunOS. SPARC (from Scalable Processor Architecture is a RISC Microprocessor Instruction set architecture originally

Database options

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

In most cases, using these options entails extra licensing costs. 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common The software which Oracle Corporation markets as Oracle Data Guard forms an extension to the Oracle RDBMS. TimesTen is a Database product from Oracle Corporation. It provides a family of real-time infrastructure Software products designed for Online Analytical Processing or OLAP (ˈoʊlæp is an approach to quickly provide answers to analytical queries that are multi-dimensional in nature In Database Computing, Oracle Real Application Clusters (RAC — an option for the Oracle Database software produced by Oracle Corporation Records management, or RM is the practice of identifying classifying archiving preserving and destroying records Oracle Spatial forms a separately-licensed option component of the Oracle Database. [31]

Suites

In addition to its RDBMS, Oracle Corporation has released several related suites of tools and applications relating to implementations of Oracle databases. A Relational database management system (RDBMS is a Database management system (DBMS that is based on the Relational model as introduced by E 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. [32] Such "features" may include (for example):

Standalone tools

Various tools address specific environments or specific market requirements.

Development of applications commonly takes place in Java (using Oracle JDeveloper) or through PL/SQL (using, for example, Oracle Forms and Oracle Reports). Oracle Forms is a tool (somewhat like Visual Basic in appearance but the code inside is PL/SQL) which allows a developer to quickly create user-interface applications which Oracle Reports is a tool for developing reports against data stored in an Oracle database. Oracle Corporation has started a drive toward 'wizard'-driven environments with a view to enabling non-programmers to produce simple data-driven applications.

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.

A list of some of the binaries and scripts supplied by Oracle Corporation to operate with/alongside Oracle databases and associated software appears on the Oracle executables web-page.

Other databases marketed by Oracle Corporation

Using Oracle Database software

Users of Oracle databases may access the online documentation, the Oracle Technology Network site, and the comp. Berkeley DB (BDB is a Computer software library that provides a high-performance embedded Database, with bindings in C, An embedded database system is a DBMS that is tightly integrated with an application that requires access to stored data, such that the database system is “hidden” Rdb/VMS is a Relational database management system (RDBMS for the Hewlett-Packard OpenVMS Operating system. Open Virtual Memory System ( OpenVMS) initially known just as Virtual Memory System ( VMS) is the name of a High-end Computer server databases. oracle Usenet discussion group. Usenet, a Portmanteau of "user" and "network" is a world-wide distributed Internet discussion system The Oracle Technet site offers downloads of full-featured evaluation software. Users can also check the Oracle FAQ site before posting questions to forums, mailing lists, etc. They can also log on to http://asktom.oracle.com to post questions to and get answers from Tom Kyte, a Vice-President of Oracle Corporation and the author of several Oracle books including Expert One-On-One Oracle (ISBN 1-59059-525-4).

The Oracle RDBMS has had a reputation among novice users as difficult to install on Linux systems. 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. Year 2006 ( MMVI) was a Common year starting on Sunday of the Gregorian calendar.

Official support

Users who have Oracle support contracts should turn to Oracle's MetaLink web site (password required). MetaLink 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[35] 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.

Database-related guidelines

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

Oracle Certification Program

The Oracle Certification Program, a professional certification program, includes the administration of Oracle Databases as one of its main certification paths. The Oracle Certification Program is a Professional certification program offered by the Oracle Corporation. The Oracle Certification Program is a Professional certification program offered by the Oracle Corporation. Overview Certifications are earned from a Professional society and in general must be renewed periodically or may be valid for a specific period of time (e It contains three levels:

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

Oracle Database in the market

Competition

In the market for relational databases, Oracle competes against commercial products such as IBM's DB2 UDB and Microsoft SQL Server. DB2 is one of IBM 's families of Relational database management system (RDBMS (or as IBM now calls it data server software products within IBM's broader Information Microsoft SQL Server is a Relational database management system (RDBMS produced by Microsoft. 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. Microsoft Windows is a series of Software Operating systems and Graphical user interfaces produced by Microsoft. 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 with Oracle on performance-optimizing server-technologies (for example, Linux on zSeries). Headline text == WebSphere refers to a Brand of IBM software products that are mostly proprietary, although the term PeopleSoft Inc was a company that provided Human resource management systems (HRMS Customer relationship management, Manufacturing Financials Enterprise Siebel Systems Inc was a software company principally engaged in the design development marketing and support of CRM applications Customer relationship management ( CRM) is a term applied to processes implemented by a company to handle its contact with its customers The two companies have a relationship perhaps best described as "coopetition". Coopetition or Co-opetition is a Neologism coined to describe cooperative Competition. Niche commercial competitors include Teradata (in data warehousing and business intelligence), Software AG's ADABAS, Sybase, and IBM's Informix, among many others. Teradata Corporation ( is a hardware and software vendor specializing in data warehousing and analytic applications ADABAS ( Acronym for Adaptable DAta BAse System is Software AG ’s primary Database management system Sybase Inc ( is an enterprise software and services company exclusively focused on managing and mobilizing information Informix is a family of Relational database management system (RDBMS products by IBM.

Increasingly, the Oracle database products compete against open-source relational database systems, particularly PostgreSQL, Firebird, and MySQL. Open source is a development methodology which offers practical accessibility to a product's source (goods and knowledge PostgreSQL is an Object-relational database management system (ORDBMS Firebird (sometimes erroneously called FirebirdSQL is a Relational database management system offering many ANSI features MySQL is a Relational database management system (RDBMS which has more than 11 million installations Oracle acquired Innobase, supplier of the InnoDB codebase to MySQL, in part to compete better in the open source market. InnoDB is a storage engine for MySQL, included as standard in all current Binaries distributed by MySQL AB. InnoDB is a storage engine for MySQL, included as standard in all current Binaries distributed by MySQL AB. Database products developed on the basis of the open-source model generally cost significantly less to acquire than Oracle systems.

Recently, competition with SAP AG software has occasioned litigation from Oracle Corporation[36]. Year 2007 ( MMVII) was a Common year starting on Monday of the Gregorian calendar in the 21st century. SAP AG (,) is the largest European Software enterprise and the fourth largest in the world with headquarters in Walldorf, Germany

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. [37] As of March 2006, the "Enterprise Edition" of the Oracle database costs the most per machine-processor among Oracle database engines. Year 2006 ( MMVI) was a Common year starting on Sunday of the Gregorian calendar. Standard Edition comes cheaper: it can run on up to 4 processors but has fewer features than Enterprise Edition — it lacks proper parallelization, etc; but remains quite suitable for running medium-sized applications). Standard ONE edition sells even more cheaply, but remains limited to 2 CPUs. Standard Edition ONE sells on a per-seat basis with a 5-user minimum. Oracle Corporation usually sells the licenses with an extra 22% cost for support and upgrades (access to MetaLink - Oracle Corporation's support site) which customers need to renew annually. Oracle Express Edition (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 4 GB of user data and to 1 GB of RAM. A software release is the distribution whether public or private of an initial or new and upgraded version of a Computer software product XE will use no more than one CPU and lacks an internal JVM. A Java Virtual Machine ( JVM) is a set of computer software programs and data structures which use a Virtual machine As computers running Oracle often have eight or more processors, the software price can rise into the hundreds of thousands of dollars. The total cost of ownership exceeds this, as Oracle databases usually require experienced and trained database administrators to do the set-up properly. Total cost of ownership (TCO is a financial estimate designed to help consumers and enterprise managers assess direct and indirect costs A database administrator ( DBA) is a person who is responsible for the environmental aspects of a Database. 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 mostly commercial Linux distributions (RedHat Enterprise Linux 3 and 4, SuSE SLES8 and 9, 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). A Linux distribution (also called GNU/Linux by distributions such as Debian, Fedora, Ubuntu, Linux Mint, Mandriva and SUSE Linux Enterprise Server ( SLES) is a Linux distribution supplied by Novell, targeted at the business market Asianux is an Operating system (a Linux distribution) It is a joint development between Linux vendors Red Flag Software Co One can avoid paying for those distros by using free alternatives such as any Red Hat Enterprise Linux clones (such as CentOS or White Box Linux). A Linux distribution (also called GNU/Linux by distributions such as Debian, Fedora, Ubuntu, Linux Mint, Mandriva and Red Hat Enterprise Linux derivatives are Linux distributions which are based on the source code of Red Hat Enterprise Linux. CentOS is a freely-available Operating system that is based on Red Hat Enterprise Linux. White Box Enterprise Linux is a free Linux distribution that is an alternative to Red Hat Enterprise Linux (RHEL primarily funded by the Beauregard Parish Library Oracle also runs stable on unsupported distributions.

Market share


See also

References

  1. ^ Oracle FAQ
  2. ^ Known schemas in Oracle
  3. ^ Optimizer plan stability definition
  4. ^ Oracle's sample schemas
  5. ^ Oracle Architecture, System Global Area
  6. ^ Oracle architecture, the library cache section
  7. ^ Oracle Architecture, data dictionary cache
  8. ^ Oracle architecture, Program Global Area section
  9. ^ Oracle Process architecture concepts
  10. ^ Locale Languages. See DBMS for a shorter list of “typical” representative database management systems The following Database Management Systems (DBMSs have at least some object-relational features The following tables compare general and technical information for a number of Relational database management systems Please see the individual products' articles for further information The following Database Management Systems (DBMSs have at least some object-relational features Rdb/VMS is a Relational database management system (RDBMS for the Hewlett-Packard OpenVMS Operating system. Open Virtual Memory System ( OpenVMS) initially known just as Virtual Memory System ( VMS) is the name of a High-end Computer server Free and Open Source ERP software READ THIS Run Book Automation ( RBA) is the ability to define build orchestrate manage and report on Workflows that support system and network operational processes Retrieved on 2008-02-26. 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common Events 747 BC - Epoch (origin of Ptolemy 's Nabonassar Era 364 - Valentinian I is proclaimed
  11. ^ Error Message languagues. Retrieved on 2008-02-26. 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common Events 747 BC - Epoch (origin of Ptolemy 's Nabonassar Era 364 - Valentinian I is proclaimed
  12. ^ As Larry Ellison said in an Oracle OpenWorld keynote presentation on 2007-11-11: "Who'd buy a version 1. Year 2007 ( MMVII) was a Common year starting on Monday of the Gregorian calendar in the 21st century. Events 308 - The Congress of Carnuntum: Attempting to keep peace within the Roman Empire, the leaders of the Tetrarchy declare 0 from four guys in California?"
  13. ^ http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
  14. ^ http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
  15. ^ Compare http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
  16. ^ http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
  17. ^ http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
  18. ^ http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
  19. ^ Oracle Database 10g Sets New Record for TPC-H Three TB Benchmark. Retrieved on 2008-01-31. 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common Events 1504 - France cedes Naples to Aragon. 1606 - Gunpowder Plot: Guy Fawkes
  20. ^ Oracle Database Patch Sets
  21. ^ Greenwald, R. , Stackowiak R. , & Stern, J. (2001). Oracle Essentials: Oracle9i, Oracle8i & Oracle8 (2nd edition). Cambridge, MA: O'Reilly.
  22. ^ Greenwald, R. , Stackowiak R. , & Stern, J. (2001). Oracle Essentials: Oracle9i, Oracle8i & Oracle8 (2nd edition). Cambridge, MA: O'Reilly.
  23. ^ http://www.oracle.com/technologies/open-source/docs/oracle-opensource-ds.pdf; but compare Informix's claim to priority: http://www.linuxjournal.com/article/3110, retrieved 2008-02-13 and that of Polyhedra
  24. ^ Enterprise Edition
  25. ^ Standard Edition
  26. ^ Standard Edition One
  27. ^ Express Edition
  28. ^ Oracle Personal Edition
  29. ^ Oracle database options
  30. ^ "Real Application Testing Overview". 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common Events 1258 - Baghdad falls to the Mongols, and the Abbasid Caliphate is destroyed Polyhedra is a family of Relational database management systems offered by ENEA AB, a Swedish company Oracle Corporation (August 2007). Retrieved on 2008-05-19. 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common Events 1535 - French explorer Jacques Cartier sets sail on his second voyage to North America with three ships 110 men and
  31. ^ See "Term licenses" at http://oraclestore.oracle.com for various markets/countries.
  32. ^ 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
  33. ^ Overview of Oracle Data Pump
  34. ^ http://www.oracle.com/technology/deploy/availability/htdocs/Flashback_Overview.htm
  35. ^ http://www.oracle.com/global/tr/support/051006_ADVANCEDMETALINK_CUSTOMER.pdf page 10, retrieved 2008-05-08
  36. ^ About the case in Hungarian
  37. ^ See the published price list. The software which Oracle Corporation markets as Oracle Data Guard forms an extension to the Oracle RDBMS. 2008 ( MMVIII) is the current year in accordance with the Gregorian calendar, a Leap year that started on Tuesday of the Common Events 589 - Reccared summons the Third Council of Toledo 1450 - Jack Cade's Rebellion: Kentishmen

External links


© 2009 citizendia.org; parts available under the terms of GNU Free Documentation License, from http://en.wikipedia.org
Dapyx Software network: MP3 Explorer | Ebook Manager | Zenithic