oracle10g_rman_語法測試_spool_sql_startup
--spool就是把rman輸出資訊匯入到一個檔案中,如此檔案打不開,rman就關閉spool功能,繼續執行其它命令
Spooling RMAN Output to a File: Example
This example directs RMAN output to standard output for the backup of datafile 1, then directs output to a log file for the backup of datafile 2, then directs output to a different log file for the whole database backup:
BACKUP DATAFILE 1;
SPOOL LOG TO '/tmp/df2log.f';
BACKUP DATAFILE 2;
SPOOL LOG OFF;
SPOOL LOG TO '/tmp/dblog.f';
BACKUP DATABASE;
SPOOL LOG OFF;
---在rman中用sql選項執行sqlplus相關命令
Archiving the Unarchived Online Logs: Example
This example backs up a tablespace and then archives all unarchived online logs:
BACKUP TABLESPACE users;
SQL "ALTER SYSTEM ARCHIVE LOG CURRENT";
Specifying a Filename within a Quoted String: Example
This example specifies a filename by using duplicate single quotes within the context of a double-quoted string:
SQL "ALTER TABLESPACE tbs_1 ADD DATAFILE ''/oracle/dbs/tbs_7.f'' NEXT 10K MAXSIZE 100k;"
Executing a PL/SQL Stored Procedure Within RMAN: Example
This example issues a PL/SQL stored procedure called scott.update_log:
RUN
{
SQL ' BEGIN scott.update_log; END; ';
}
---startup相關命令選項
startup dba --只有restricted session許可權的使用者才能連線資料庫
force --先abort then startup
mount
nomount --is useful for lose of spfile
pfile=''
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-615571/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle10g_rman_語法測試_1Oracle
- oracle10g_rman_語法測試_2Oracle
- oracle10g_rman_語法測試_3Oracle
- oracle10g_rman_語法測試_4Oracle
- oracle10g_rman_語法測試_5Oracle
- oracle10g_rman_語法測試_6Oracle
- oracle10g_rman_語法測試_7Oracle
- oracle10g_rman_語法測試_8Oracle
- oracle10g_rman_語法測試_10Oracle
- oracle10g_rman_語法測試_restore專題OracleREST
- oracle10g_rman_語法測試_show專題Oracle
- oracle10g_rman_語法測試_reset database_allocate channel_OracleDatabase
- if測試和語法規則
- 前端測試框架Jest——語法篇前端框架
- python語法-測試程式碼Python
- 軟體測試培訓之:白盒測試的語句覆蓋法和判定覆蓋法
- PJzhang:搜尋引擎高階語法與滲透測試
- python介面自動化測試之python基礎語法Python
- 軟體測試術語
- 程式測試第一法則?
- ESlint語法檢測工具EsLint
- 測試工程師必知的10大測試法則工程師
- C語言單元測試C語言
- 測試測試測試測試測試測試
- 《shell條件測試語句,字串測試apache是否開啟》字串Apache
- 整合測試時 MockMvc 無法注入MockMVC
- 八大藝術測試法
- oracle儲存過程plsql_sp_多個out引數測試語法Oracle儲存過程SQL
- Go語言中的單元測試Go
- 軟體測試常用術語表
- 測試TOM=SQLLDR使用CASE語句SQL
- 邏輯注入漏洞滲透測試檢測辦法
- 效能測試學習(1)-效能測試分類與常見術語
- 百萬資料查詢測試 只需1秒--Sql語句效率測試SQL
- SQLTest系列之INSERT語句測試SQL
- Julia語言的一些測試
- 資料庫測試專用術語資料庫
- 滲透測試常用術語總結