archive log list;Database log mode Archive ModeAutomatic archival EnabledArchive destination c:\ap..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Oracle手工熱備

發(fā)布時(shí)間:2020-04-09 07:50:34 來源:網(wǎng)絡(luò) 閱讀:985 作者:whshurk 欄目:關(guān)系型數(shù)據(jù)庫

sys@newtestCDB> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination c:\app\Administrator\virtual\archivelog
Oldest online log sequence 16
Next log sequence to archive 18
Current log sequence 18
sys@newtestCDB> alter pluggable database all open;

Pluggable database altered.

Elapsed: 00:00:13.20
備份表空間
sys@newtestCDB> alter pluggable database all open;

Pluggable database altered.

Elapsed: 00:00:13.20
sys@newtestCDB> alter session set container=clonepdb_plug;

Session altered.

Elapsed: 00:00:00.16
sys@newtestCDB> alter tablespace users begin backup;

Tablespace altered.

Elapsed: 00:00:00.23
拷貝表空間文件到安全區(qū)域
sys@newtestCDB> alter tablespace users end backup;

Tablespace altered.

Elapsed: 00:00:00.01
sys@newtestCDB> select * from scott.test;

 EMPNO ENAME      JOB              MGR HIREDATE                   SAL       COMM     DEPTNO

  7399 ALLEN      SALESMAN        7698 1981-02-20 00:00:00       1600        300         30
  7521 WARD       SALESMAN        7698 1981-02-22 00:00:00       1250        500         30
  7566 JONES      MANAGER         7839 1981-04-02 00:00:00       2975                    20
  7654 MARTIN     SALESMAN        7698 1981-09-28 00:00:00       1250       1400         30
  7698 BLAKE      MANAGER         7839 1981-05-01 00:00:00       2850                    30
  7782 CLARK      MANAGER         7839 1981-06-09 00:00:00       2450                    10
  7839 KING       PRESIDENT            1981-11-17 00:00:00       5000                    10
  7844 TURNER     SALESMAN        7698 1981-09-08 00:00:00       1500          0         30
  7900 JAMES      CLERK           7698 1981-12-03 00:00:00        950                    30
  7902 FORD       ANALYST         7566 1981-12-03 00:00:00       3000                    20
  7934 MILLER     CLERK           7782 1982-01-23 00:00:00       1300                    10

 EMPNO ENAME      JOB              MGR HIREDATE                   SAL       COMM     DEPTNO

  7369 SMITH      CLERK           7902 1980-12-17 00:00:00        800                    20
  7499 ALLEN      SALESMAN        7698 1981-02-20 00:00:00       1600        300         30

13 rows selected.

Elapsed: 00:00:00.12
sys@newtestCDB> truncate table scott.test;

Table truncated.

Elapsed: 00:00:00.36
sys@newtestCDB> select * from scott.test;

no rows selected

Elapsed: 00:00:00.02

sys@newtestCDB> shutdown immediate
Pluggable Database closed.
//刪除users01.dbf或移動(dòng)到其他目錄造成數(shù)據(jù)庫崩潰。
sys@newtestCDB> startup
ORA-01157: cannot identify/lock data file 43 - see DBWR trace file
ORA-01110: data file 43: 'C:\APP\ADMINISTRATOR\VIRTUAL\ORADATA\NEWTEST\CLONEPDB_PLUG\USERS01.DBF'
//將備份的數(shù)據(jù)文件復(fù)制回目錄
sys@newtestCDB> recover datafile 43
Media recovery complete.
sys@newtestCDB> alter database open;

Database altered.

Elapsed: 00:00:04.93
sys@newtestCDB> select * from scott.test;

no rows selected

Elapsed: 00:00:00.11

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI