Blogs
Understanding Shared Memory and Semaphores
Submitted by Nidhi Jain on Mon, 2003-12-15 13:03by Nidhi Jain
Shared memory and semaphores are two important resources for an Oracle instance on Unix. An instance cannot start if it is unable to allocate what it needs.
- Nidhi Jain's blog
- Login to post comments
- Read more
Oracle Database renamed to Oracle10G
Submitted by admin on Wed, 2003-09-10 18:28Oracle Corporation renamed the latest version of their database management system from Oracle 10i to Oracle10G to illustrate their commitment to Grid computing and the GGG (Great Global Grid). Oracle's Chairman and CEO, Larry Ellison, will release Oracle10G at the OracleWorld conference in San Francisco on the 9th of September 2003.
- admin's blog
- Login to post comments
- Read more
Oracle9i New Feature: Oracle Managed Files
Submitted by admin on Mon, 2003-09-01 15:58Oracle Managed Files (OMF), a new feature introduced in Oracle9i, enables the Oracle Server to automatically create and delete database files using standard operating system interfaces. This
feature hugely simplifies the job of the DBA, as the DBA doesn't need to interact with the underlying operating system to create and delete files.
- admin's blog
- Login to post comments
- Read more
Initialization Parameter files: PFILEs vs. SPFILEs
Submitted by admin on Sun, 2003-08-03 19:29When an Oracle Instance is started, the characteristics of the Instance are established by parameters specified within the initialization parameter file. These initialization parameters are either stored in a PFILE or SPFILE. SPFILEs are available in Oracle 9i and above. All prior releases of Oracle are using PFILEs.
- admin's blog
- Login to post comments
- Read more
On-line Table Reorganization and Redefinition
Submitted by admin on Sat, 2003-08-02 14:21Tables can be reorganized and redefined (evolved) on-line with the DBMS_REDEFINITION package. The process is similar to on-line rebuilds of indexes, in that the original table is left on-line, while a new copy of the table is built. However, an index index-rebuild is a singular operation, while table redefinition is a multi-step process.
- admin's blog
- Login to post comments
- Read more
Locally vs. Dictionary Managed Tablespaces
Submitted by admin on Tue, 2003-07-01 12:31When Oracle allocates space to a segment (like a table or index), a group of contiguous free blocks, called an extent, is added to the segment. Metadata regarding extent allocation and unallocated extents are either stored in the data dictionary, or in the tablespace itself. Tablespaces that record extent allocation in the dictionary, are called dictionary managed tablespaces, and tablespaces that record extent allocation in the tablespace header, are called locally managed tablespaces.
- admin's blog
- Login to post comments
- Read more
TEMPORARY Tablespaces and TEMPFILES
Submitted by admin on Thu, 2003-06-19 02:28What are Temporary Tablespaces:
Temporary tablespaces are used to manage space for database sort operations and for storing global temporary tables. For example, if you join two large tables, and Oracle cannot do the sort in memory (see SORT_AREA_SIZE initialisation parameter), space will be allocated in a temporary tablespace for doing the sort operation. Other SQL operations that might require disk sorting are: CREATE INDEX, ANALYZE, Select DISTINCT, ORDER BY, GROUP BY, UNION, INTERSECT, MINUS, Sort-Merge joins, etc.
The DBA should assign a temporary tablespace to each user in the database to prevent them from allocating sort space in the SYSTEM tablespace. This can be done with one of the following commands:
- admin's blog
- Login to post comments
- Read more
Automatic Undo Management (AUM)
Submitted by admin on Wed, 2003-05-14 21:24In Oracle 8i and below, Rollback Segments provide read consistency and the ability to rollback transactions. In Oracle 9i, Undo segments can be used to provide this functionality. The advantage of using Automatic Undo Management is that it relieves the DBA of manually creating, sizing and monitoring the rollback segments in the database.
- admin's blog
- Login to post comments
- Read more
Difference between DBFile Sequential and Scattered Reads
Submitted by admin on Wed, 2003-04-23 08:46Both "db file sequential read" and "db file scattered read" events signify time waited for I/O read requests to complete. Time is reported in 100's of a second for Oracle 8i releases and below, and 1000's of a second for Oracle 9i and above. Most people confuse these events with each other as they think of how data is read from disk. Instead they should think of how data is read into the SGA buffer cache or user PGA memory.
db file sequential read:
A sequential read operation reads data into contiguous memory (usually a single-block read with p3=1, but can be multiple blocks). Single block I/Os are usually the result of using indexes. This event is also used for rebuilding the controlfile and reading datafile headers (P2=1). In general, this event is indicative of disk contention on index reads.
- admin's blog
- Login to post comments
- Read more
Protecting Oracle executables on Unix
Submitted by admin on Fri, 2003-03-21 09:30Execute the following commands to protect Oracle executables on Unix from unauthorized access:
cd $ORACLE_HOME/bin chmod 750 lsnrctl chmod 750 svrmgrl chmod 750 orapwd chmod 750 tnslsnr chmod 750 dbshut chmod 750 dbstart chmod 750 tstshm chmod 750 runInsaller
Also, change file permissions for all you Oracle database files:
Controlfiles = chmod 640 rw-r
- admin's blog
- Login to post comments

