Skip to main content

Create Control File

I keep forgetting the syntax for create control file, thought it would help me and others for the syntax and the steps to create.

STEPS:


1. Shutdown the database
2. sqlplus '/as sysdba'
3. startup nomount
4. Create Control file (syntax below)
5. alter database open

CREATE CONTROLFILE REUSE DATABASE "anydatabasename" NORESETLOGS NOARCHIVELOG
MAXLOGFILES 50
MAXLOGMEMBERS 3
MAXDATAFILES 1000
MAXINSTANCES 8
MAXLOGHISTORY 500
LOGFILE
GROUP 1 'REDLOG PATH' SIZE 10M,
GROUP 2 'REDLOG PATH' SIZE 10M
DATAFILE
;


EXAMPLE:

CREATE CONTROLFILE REUSE DATABASE "PROD" RESETLOGS NOARCHIVELOG
MAXLOGFILES 50
MAXLOGMEMBERS 3
MAXDATAFILES 1000
MAXINSTANCES 8
MAXLOGHISTORY 500
LOGFILE
GROUP 1 '/APPS/proddata/log01a.dbf' SIZE 10M,
GROUP 2 '/APPS/proddata/log02a.dbf' SIZE 10M
DATAFILE
'/APPS/proddata/a_txn_data01.dbf' ,
'/APPS/proddata/a_txn_data02.dbf' ,
'/APPS/proddata/a_txn_data03.dbf' ,
'/APPS/proddata/a_txn_ind01.dbf' ,
'/APPS/proddata/a_txn_ind02.dbf' ,
'/APPS/proddata/a_txn_ind03.dbf' ,
'/APPS/proddata/a_txn_ind04.dbf' ,
'/APPS/proddata/a_txn_ind05.dbf' ;


If you want to set a new SID for the database then use SET instead of REUSE.
If you want to reset redo logs which will be ideal for a cloned database out of a cold backup.

Comments

Popular posts from this blog

Basics of RDBMS

Data Small set of information becomes data, this set of information helps make decision. Data is always some useful information. Database Place where you store the data. Database represents some aspect of the real world called "miniworld". A database is designed, built and populated with data for a specific purpose. It has intended group of users and some preconceived applications in which these users are interested. In other words, a database has some source from which data is derived, some degree of interaction with events in the real world and an audience that is actively interested in the contents of the database. Database can also be defined as collection of one or more tables. Ex: Mobile, human brain etc DBMS (Database Management System ) Is a program that stores retrieves and modifies data in the database on request. Study of different techniques of design, development and maintenance of the database Types of DBMS These types are based upon their m...

SQL Interview Questions

1. CLICK HERE FOR QUESTIONS ON BASIC SELECT     2. CLICK HERE FOR QUESTIONS ON BASIC SELECT WITH CONDITION   3.  CLICK HERE FOR QUESTIONS FROM QSPIDERS   4. CLICK HERE FOR QUESTIONS ON FUNCTIONS   5. CLICK HERE FOR QUESTIONS ON SUBQUERIES 6. CLICK HERE FOR MORE QUESTIONS ON SQL       CLICK HERE FOR ANSWERS   Some more Online Questions.   On WIZIQ.COM  -- 66 Questions and its answers Found by Neha Abhay Kumar   On SCRIBD.COM   -- 235 Questions and its answers