Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Script tp parse control file backup ??
Prem,
I presume that you want to use the end result to rebuild databases on a regular interval or schedule completely automated, right?
If so then you can use the following approach as follows which gives you the required flexibility:
1.. Create a header file (e.g. 'cf_header.sql') that has all the lines up to and including the 'DATAFILE' line. Make sure that it includes 'STARTUP NOMOUNT' as the first line. This header file is where you can tweak down (especially for development or sandbox databases) items like the LOGFILE section to have less redo log groups, less redo logs per group, smaller redo logs and also disable archivelog. Also very useful if the new database resides on a separate host with different file system layout and naming than the source instance. Here is an example for a 'DEV' database I regularly refresh:
a.. STARTUP NOMOUNT
CREATE CONTROLFILE SET DATABASE "DEV" RESETLOGS NOARCHIVELOG
MAXLOGFILES 32 MAXLOGMEMBERS 5 MAXDATAFILES 1022 MAXINSTANCES 3 MAXLOGHISTORY 1815 LOGFILE GROUP 1 ('/u09/oradata/DEV/redoA01.dbf', '/u07/oradata/DEV/redoB01.dbf') SIZE 50M, GROUP 2 ('/u09/oradata/DEV/redoA02.dbf', '/u07/oradata/DEV/redoB02.dbf') SIZE 50M, GROUP 3 ('/u09/oradata/DEV/redoA03.dbf', '/u07/oradata/DEV/redoB03.dbf') SIZE 50MDATAFILE
if [ $cnt -eq $dbf_count ] then echo "'$filename';" >> cr_DEV.sql else echo "'$filename'," >> cr_DEV.sql fi (( cnt=cnt+1 ))
Good Luck!
-f
> Hi All,
> SQL > alter system backup controlfile to trace;
>
> Does anybody have a script to parse this control file backup ?
> that is, i need to create a neat script that contains just
>
> STARTUP NOMOUNT
> CREATE CONTROLFILE...
> ...
> ...
> CHARACTER SET JA16SJIS;
>
> Can someone share it with me ??
>
> Thanks and Regards,
> Prem.
> ----------------------------------------------------------------
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> ----------------------------------------------------------------
> To unsubscribe send email to: oracle-l-request_at_freelists.org
> put 'unsubscribe' in the subject line.
> --
> Archives are at http://www.freelists.org/archives/oracle-l/
> FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
> -----------------------------------------------------------------
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Thu Jul 01 2004 - 15:41:32 CDT
![]() |
![]() |