存储过程定位问题

简介: <div style="margin:0px; padding:0px; border:0px; line-height:1.57143em; font-family:gotham,helvetica,arial,sans-serif; font-size:14px; color:rgb(56,56,56)"> <span face="verdana, arial, helvetica"
定位问题:

select * from dba_recoverable_script;

SELECT * FROM DBA_RECOVERABLE_SCRIPT_BLOCKS WHERE BLOCK_NUM=19

BEGIN
DBMS_STREAMS_ADM.MAINTAIN_SCHEMAS(
schema_names => ‘ning’,
source_directory_object => ‘DIR_SOURCE’,
5 destination_directory_object => ‘DIR_DEST’,
6 source_database => ‘ning.test’,
7 destination_database => ‘dest.test’,
8 perform_actions => true,
9 dump_file_name => ‘export_ning.dmp’,
10 capture_queue_table => ‘rep_capture_queue_table’,
11 capture_queue_name => ‘rep_capture_queue’,
12 capture_queue_user => NULL,
13 apply_queue_table => ‘rep_dest_queue_table’,
14 apply_queue_name => ‘rep_dest_queue’,
15 apply_queue_user => NULL,
16 capture_name => ‘capture_ning’,
17 propagation_name => ‘prop_ning’,
18 apply_name => ‘apply_ning’,
19 log_file => ‘export_ning.clg’,
20 bi_directional => false,
21 include_ddl => true,
22 instantiation => DBMS_STREAMS_ADM.INSTANTIATION_SCHEMA);
23 END;
24 /
目录
相关文章
|
9月前
|
SQL Arthas druid
MyBtais 批量插入慢排查及分析(后续)
MyBtais 批量插入慢排查及分析(后续)
108 0
|
11月前
|
SQL 数据库 索引
重现一条简单SQL的优化过程
重现一条简单SQL的优化过程
10977 0
|
存储 SQL Oracle
MYSQL存储过程调试过程
MYSQL存储过程调试过程
675 0