Oracle Database (commonly referred to as Oracle RDBMS or simply Oracle) is a relational database management system (RDBMS) produced and marketed by Oracle Corporation. As of 2008, Oracle had become a major presence in database computing.
Welcome to CWAnswers
CWAnswers is your guide to the sprawling world wide web. The directory aims to provide a useful guide made by users. You can share your knowledge as well - simply sign up and edit your first entry. For questions just contact the team at support - at - cwanswers.com.
Weblinks for Oracle Database
Top 10 for Oracle Database
Things about Oracle Database you find nowhere else.
Select content modules
Oracle Database Insider Blog
Intel Proud of Its Role in HP Oracle Database Machine ... Open Source users now have easy access to raster imagery in Oracle Database. ...blogs.oracle.com/databaseinsider/Oracle Blog " Oracle Database
Posted in - OracleContractors.com, Oracle Database | No Comments " ... Oracle Blog is proudly powered by WordPress. Adapted by Gianthand ...blog.oraclecontractors.com/?cat=2Oracle Business Intelligence Blog: Oracle Database 11g on Linux now ...
EUL Horror Story - From Michael's Blog. New Book : The Oracle 10gR2 Performance Tuning Tip... Oracle Database 11g on Linux now available. What no GUI? How ...oraclebi.blogspot.com/2007/08/oracle-database-11g-on-linux-n...Oracle Database Disected
Oracle Database Disected. This blog is devoted to discuss Oracle's Databases internals... Subscribe to Oracle Database Disected by Email. Bookmark this on ...oracledisect.blogspot.com/Oracle Warehouse Builder (OWB) Weblog
Oracle Warehouse Builder 11.2 is still on track to be released with Oracle Database 11gR2. ... Subscribe to this blog's feed. Powered by. Movable Type and Oracle ...blogs.oracle.com/warehousebuilderOracle Database (commonly referred to as Oracle RDBMS or simply Oracle) is a relational database management system (RDBMS) produced and marketed by Oracle Corporation. As of 2008, Oracle had become a major presence in database computing.
Larry Ellison and his friends and former co-workers Bob Miner and Ed Oates started the consultancy 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.
Physical and logical structuring in Oracle
An Oracle database system 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).
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 (which hold transactional history). Processes can in turn archive the online redo logs into archive logs (offline redo logs), which provide the basis (if necessary) for data recovery and for some forms of data replication.
The Oracle RDBMS stores data logically in the form of tablespaces and physically in the form of data files. Tablespaces can contain various types of memory segments; for example, 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. At the physical level, data-files comprise one or more data blocks, where the block size can vary between data-files.
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 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. 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.

























