deleted of control file how will u recover control file?
Answer Posted / kittu_chintu2005
Method 1:
SQL>STARTUP NOMOUNT;
SQL>CREATE CONTROLFILE REUSE DATABASE "DB_NAME" ARCHIVELOG RESETLOGS
LOGFILE
GROUP 1 ( 'location of redo1a.log','location of redo1b.log') size XXmb,
GROUP 2 ( 'location of redo2a.log','location of redo2b.log') size xxmb
DATAFILE
'location of system.dbf',
'location of users.dbf',
'location of temp.dbf',
'location of ts1.dbf';
SQL>RECOVER DATABASE;
SQL>ALTER DATABASE OPEN RESETLOGS;
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
Does transparent data encryption provide encryption when transmitting data across network? : sql server DBA
What the different components in replication and what is their use? : sql server DBA
Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?
What are the commands used in dcl? : sql server DBA
Why would you use sql agent? : sql server DBA
what is the use of ocr?
How would you extract DDL of a table without using a GUI tool?
what is ora 24313?what is the procedure to exclude that error?
What are the high-availability solutions in sql server and differentiate them briefly? : sql server DBA
what is the diffrence between core dba and apps dba?
Which autogrowth database setting is good? : sql server DBA
What would you do with an "in-doubt" distributed transaction?
what are the performance views in an oracle rac environment?
how can you process messages in order asynchronously?
how can you create a user-defined lock?