使用recovery catalog查看数据库过去的定义

recovery catalog 应用之一:使用recovery catalog查看数据库过去的定义sql

咱们平时经过report schema看到的是当前数据库的定义信息,数据库

若是使用 recovery catalog的状况下,咱们能够看到数据库之前的数据结构的信息数据结构

好比:oracle

1.增长表空间前的状况:app

[oracle@dbserver ~]$ rman target / catalog rman/rman@192.168.133.1:1521/orclspa

Recovery Manager: Release 11.2.0.4.0 - Production on Wed Aug 29 11:41:49 2018server

Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.get

connected to target database: SZTECH1 (DBID=3253410194)it

connected to recovery catalog databaseio

RMAN> report schema;

Report of database schema for database with db_unique_name SZTECH1

List of Permanent Datafiles

===========================

File Size(MB) Tablespace RB segs Datafile Name

---- -------- -------------------- ------- ------------------------

1 740 SYSTEM YES /u01/app/oracle/oradata/sztech1/system01.dbf

2 570 SYSAUX NO /u01/app/oracle/oradata/sztech1/sysaux01.dbf

3 105 UNDOTBS1 YES /u01/app/oracle/oradata/sztech1/undotbs01.dbf

4 303 USERS NO /u01/app/oracle/oradata/sztech1/user01.dbf

5 330 EXAMPLE NO /u01/app/oracle/oradata/sztech1/example01.dbf

List of Temporary Files

=======================

File Size(MB) Tablespace Maxsize(MB) Tempfile Name

---- -------- -------------------- ----------- --------------------

1 29 TEMP 32767 /u01/app/oracle/oradata/sztech1/temp01.dbf

RMAN>

2.加一个表空间,ts_test

能够记录这个时间为:2018-08-29 12:08:47

[oracle@dbserver ~]$ sqlplus /nolog

SQL*Plus: Release 11.2.0.4.0 Production on Wed Aug 29 12:08:47 2018

Copyright (c) 1982, 2013, Oracle. All rights reserved.

SQL> conn / as sysdba

Connected.

SQL> create tablespace ts_test datafile '/u01/app/oracle/oradata/sztech1/ts_test01.dbf' size 10m;

Tablespace created.

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

3.使用report schema,看到当前的表空间状况,包含新增长的表空间ts_test

[oracle@dbserver ~]$ rman target / catalog rman/rman@192.168.133.1:1521/orcl

Recovery Manager: Release 11.2.0.4.0 - Production on Wed Aug 29 12:09:17 2018

Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.

connected to target database: SZTECH1 (DBID=3253410194)

connected to recovery catalog database

RMAN>

RMAN> report schema ;

Report of database schema for database with db_unique_name SZTECH1

List of Permanent Datafiles

===========================

File Size(MB) Tablespace RB segs Datafile Name

---- -------- -------------------- ------- ------------------------

1 740 SYSTEM YES /u01/app/oracle/oradata/sztech1/system01.dbf

2 570 SYSAUX NO /u01/app/oracle/oradata/sztech1/sysaux01.dbf

3 105 UNDOTBS1 YES /u01/app/oracle/oradata/sztech1/undotbs01.dbf

4 303 USERS NO /u01/app/oracle/oradata/sztech1/user01.dbf

5 330 EXAMPLE NO /u01/app/oracle/oradata/sztech1/example01.dbf

6 10 TS_TEST NO /u01/app/oracle/oradata/sztech1/ts_test01.dbf

List of Temporary Files

=======================

File Size(MB) Tablespace Maxsize(MB) Tempfile Name

---- -------- -------------------- ----------- --------------------

1 29 TEMP 32767 /u01/app/oracle/oradata/sztech1/temp01.dbf

4. 使用建立新表空间以前的时间查询:

RMAN> report schema at time "to_date('2018-08-29 12:08:47','yyyy-mm-dd hh24:mi:ss')";

Report of database schema for database with db_unique_name SZTECH1

List of Permanent Datafiles

===========================

File Size(MB) Tablespace RB segs Datafile Name

---- -------- -------------------- ------- ------------------------

1 740 SYSTEM YES /u01/app/oracle/oradata/sztech1/system01.dbf

2 570 SYSAUX NO /u01/app/oracle/oradata/sztech1/sysaux01.dbf

3 105 UNDOTBS1 YES /u01/app/oracle/oradata/sztech1/undotbs01.dbf

4 303 USERS NO /u01/app/oracle/oradata/sztech1/user01.dbf

5 330 EXAMPLE NO /u01/app/oracle/oradata/sztech1/example01.dbf

List of Temporary Files

=======================

File Size(MB) Tablespace Maxsize(MB) Tempfile Name

---- -------- -------------------- ----------- --------------------

1 29 TEMP 32767 /u01/app/oracle/oradata/sztech1/temp01.dbf

RMAN>

这个时候,咱们发现,新表空间不见了。

5. 固然,这个功能只能使用了 recovery catalog的状况下,才能够 。

[oracle@dbserver ~]$ rman target /

Recovery Manager: Release 11.2.0.4.0 - Production on Wed Aug 29 12:37:12 2018

Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.

connected to target database: SZTECH1 (DBID=3253410194)

RMAN> report schema at time "to_date('2018-08-29 12:08:47','yyyy-mm-dd hh24:mi:ss')";

using target database control file instead of recovery catalog

RMAN-00571: ===========================================================

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

RMAN-00571: ===========================================================

RMAN-03002: failure of report command at 08/29/2018 12:37:18

RMAN-06137: must have recovery catalog for REPORT SCHEMA AT TIME

RMAN>

相关文章
相关标签/搜索