deleted of control file how will u recover control file?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / suman
we are restore the control file from cold/hot backup
after that
$sqlplus / 'as sysdba'
>startup nomount
>recover database using backup controlfile until cancel;
>alter database mount;
>alter database open resetlogs;
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / bolla
At o/s level we are restore control.file from cold/hot backup
after
]$sqlplus /'as sysdba'
sys>startup nomount
sys>recover database using backup controlfile until cancel;
sys>alter database mount;
sys>alter database open resetlogs;
Is This Answer Correct ? | 3 Yes | 1 No |
What background process refreshes materialized views?
2 Answers Accenture, FLSmidth,
What is the difference between Datapump & export/import?
What authentication modes does sql server support? : sql server DBA
Explain about your sql server dba experience? : sql server DBA
You have just compiled a PL/SQL package but got errors, how would you view the errors?
one datafile is lost in standy side how can you recover that??
How can we know the exact updation date of a particular database?
what are the types of connection load-balancing?
What are the high-availability solutions in sql server and differentiate them briefly? : sql server DBA
what r the types of backup?
What type of index should you use on a fact table?
What command would you use to encrypt a PL/SQL application?