Oracle冷備份(一致備份)指令碼
'系統:linux redhat 3
closed_backup.sql指令碼存放在/u01/backup/目錄下
指令碼內容:
1 Remark set sql*plus variables to manipulate output
2 set feedback off heading off verify off trimspool off
3 set pagesize 0 linesize 200
4 Remark set sql*plus user variables used in this script
5 define dir ='/u01/backup'
6 define fil='/u01/backup/closed_backup_commands.sql'
7 prompt *** Spooling to &fil
8 Remark create a command file with file backup commands
9 spool &fil
10 select 'host cp '|| name ||' &dir' from v$datafile order by 1;
11 select 'host cp '|| member ||' &dir' from v$logfile order by 1;
12 select 'host cp '|| name ||' &dir' from v$controlfile order by 1;
13 select 'host cp '|| name ||' &dir' from v$tempfile order by 1;
14 spool off;
15 Remark Shutdown the database cleanly
16 shutdown immediate;
17 Remark Run the copy file commands from the operation system
18 @&fil
19 Remark start the database again
20 startup;
21
用oracle中的sys or system 使用者在sqlplus中執行
>@/u01/backup/closed_backup.sql
即可.
closed_backup.sql指令碼存放在/u01/backup/目錄下
指令碼內容:
1 Remark set sql*plus variables to manipulate output
2 set feedback off heading off verify off trimspool off
3 set pagesize 0 linesize 200
4 Remark set sql*plus user variables used in this script
5 define dir ='/u01/backup'
6 define fil='/u01/backup/closed_backup_commands.sql'
7 prompt *** Spooling to &fil
8 Remark create a command file with file backup commands
9 spool &fil
10 select 'host cp '|| name ||' &dir' from v$datafile order by 1;
11 select 'host cp '|| member ||' &dir' from v$logfile order by 1;
12 select 'host cp '|| name ||' &dir' from v$controlfile order by 1;
13 select 'host cp '|| name ||' &dir' from v$tempfile order by 1;
14 spool off;
15 Remark Shutdown the database cleanly
16 shutdown immediate;
17 Remark Run the copy file commands from the operation system
18 @&fil
19 Remark start the database again
20 startup;
21
用oracle中的sys or system 使用者在sqlplus中執行
>@/u01/backup/closed_backup.sql
即可.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12778571/viewspace-201786/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle物理冷備份指令碼Oracle指令碼
- oracle自動冷備份指令碼Oracle指令碼
- 生成冷備份指令碼指令碼
- windows 下的Oracle 冷備份指令碼WindowsOracle指令碼
- oracle 自動冷備份指令碼(轉)Oracle指令碼
- Oracle 冷備份Oracle
- oracle的熱備份和冷備份Oracle
- ORACLE備份指令碼Oracle指令碼
- oracle 備份指令碼Oracle指令碼
- windows和unix平臺下Oracle冷備份指令碼WindowsOracle指令碼
- 揭祕ORACLE備份之--冷備份(也叫離線備份)Oracle
- Oracle冷備份級冷備份的不完全恢復Oracle
- Oracle冷備份和熱備份的處理Oracle
- Oracle 熱備份和冷備份的區別Oracle
- ORACLE日常備份指令碼Oracle指令碼
- Oracle 集中備份指令碼Oracle指令碼
- oracle RMAN備份指令碼Oracle指令碼
- oracle_備份指令碼Oracle指令碼
- Oracle OCP(60):冷備份Oracle
- Oracle冷備份練習Oracle
- Oracle資料庫的備份方法-冷備份(轉)Oracle資料庫
- rman備份和增量備份指令碼指令碼
- 備份指令碼指令碼
- [Oracle] rman備份指令碼(2)Oracle指令碼
- oracle for linux 備份指令碼OracleLinux指令碼
- Oracle邏輯備份指令碼Oracle指令碼
- oracle rman備份指令碼收集Oracle指令碼
- mysql的冷備份與熱備份MySql
- Oracle資料庫冷備份與熱備份操作梳理Oracle資料庫
- Oracle 11g RMAN備份-一致備份Oracle
- 備份&恢復系列之一:怎樣在linux中寫對oracle的冷備份指令碼!LinuxOracle指令碼
- Oracle資料庫的冷備份及冷備份異地恢復方法Oracle資料庫
- oracle冷備指令碼薦Oracle指令碼
- oracle的冷備指令碼Oracle指令碼
- 分享Oracle Rman的備份指令碼Oracle指令碼
- ORACLE常用定時備份指令碼Oracle指令碼
- oracle rman 定時備份指令碼Oracle指令碼
- ORACLE自動備份shell指令碼Oracle指令碼