迁移 AWR 数据 Oracle Database 允许我们在几个数据库之间传输 AWR 数据。当您要在单独的系统上分析 AWR 数据时,这非常有用。要传输 AWR 数据,您必须先从源数据库上抽取出 AWR 快照数据,然后将该数据载入目标数据库中。以下内容将介绍如何在 Oracle Datab
迁移 AWR数据
Oracle Database 允许我们在几个数据库之间传输 AWR数据。当您要在单独的系统上分析 AWR数据时,这非常有用。要传输 AWR数据,您必须先从源数据库上抽取出 AWR快照数据,然后将该数据载入目标数据库中。以下内容将介绍如何在 Oracle Database上抽抽取和载入 AWR数据。
1抽取 AWR数据
利用awrextr.sql脚本可以将数据库中一系列的 AWR快照数据抽取到Data Pump导出文件中。导出 AWR快照数据后,您就可以将此 dump文件传输到您要载入该数据库的其他数据库上。要运行awrextr.sql脚本,您必须以SYS用户身份连接到数据库中。
抽取 AWR数据的步骤如下:
@$ORACLE_HOME/rdbms/admin/awrextr.sql
显示 AWR schema中的数据库列表。
Enter value for dbid: 220853307
Enter value for num_days: 2
4. 指定起始和结束snapshot_id,定义要抽取的 AWR数据的范围:
Enter value forbegin_snap: 31
Enter value for end_snap: 41
sys@PROD> createdirectory db_dir as '/home/oracle/backup';
Enter value for directory_name: DB_DIR
Enter value for file_name: awrdata_31_41
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| The AWR extract dump file will be located
| in the following directory/file:
| /home/oracle/backup
| awrdata_31_41.dmp
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| *** AWR Extract Started ...
|
| This operation will take a few moments. The
| progress of the AWR extract operation can be
| monitored in the following directory/file:
| /home/oracle/backup
| awrdata_31_41.log
|
Elapsed:00:00:00.06
Elapsed:00:01:41.66
End of AWR ExtractAWR
数据导出的时间由要导出 AWR数据量决定,导出后您就可以将其传送到其他数据库系统。
[oracle@prod backup]$ ls -lt
total 10196
-rw-r----- 1 oracle oinstall10407936 Mar 9 21:36 awrdata_31_41.dmp
-rw-r--r-- 1 oracleoinstall 15577 Mar 9 21:36 awrdata_31_41.log
2 载入 AWR数据
将导出的 dump文件传送到目标数据库后,可以使用awrload.sql脚本载入抽取的 AWR数据。awrload.sql脚本首先会创建一个中转schema,将Data Pump文件载入数据库中。随后会将该数据从中转 schema传入相应的AWR表。要运行awrload.sql脚本,必须以 SYS用户身份连接到数据库。
载入 AWR数据的步骤:
@$ORACLE_HOME/rdbms/admin/awrload.sql
显示一个目录对象列表。
Entervalue for directory_name: DB_DIR
Enter valuefor file_name: awrdata_31_41
Enter value for schema_name: AWR_STAGE
Enter value for default_tablespace: SYSAUX
Enter value for temporary_tablespace: TEMP
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| Loading the AWR data from the following
| directory/file:
| /home/oracle/backup
| awrdata_31_41.dmp
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| *** AWR Load Started ...
|
| This operation will take a few moments. The
| progress of the AWR load operation can be
| monitored in the following directory/file:
| /home/oracle/backup
| awrdata_31_41.log
|
Elapsed:00:00:00.02
Elapsed:00:00:56.56
Elapsed:00:00:16.11
... DroppingSTAGE_AWR user
载入的时间由要载入的 AWR数据量决定。载入 AWR数据后,中转schema将自动删除。
http://blog.csdn.net/xiangsir/article/details/8666184