A Quick Guide To Creating An Oracle Database

OCPdba.Net

Environment

Assumptions

GUI Tools





A. The environment has to be setup
  1. Set your Oracle Home directory appropriately
  2. Set your ORACLE_SID as you would need to
  3. Here is a sample initTEST.ora
  4. You will alse need a password file: $ORACLE_HOME/dbs/orapwTEST
B. Creating the database
  1. cd $ORACLE_HOME/dbs
  2. In another session, "spool $ORACLE_HOME/admin/TEST/bdump/alert_TEST.log
  3. sqlplus "/ as sysdba"
  4. SQL> startup nomount pfile=initTEST.ora
  5. SQL> @CreateDB.sql
C. At this point the database instance is created but not usable...
  1. This script CreateDBCatalog.sql would create the database data dictionary and other vital structures
D. The Network configuration must also be done
  1. Server Side....
  2. Client Side....

OCPdba.Net