- 最后登录
- 2018-9-14
- 在线时间
- 47 小时
- 威望
- 205
- 金钱
- 2327
- 注册时间
- 2011-10-13
- 阅读权限
- 150
- 帖子
- 90
- 精华
- 0
- 积分
- 205
- UID
- 26
|
2#
发表于 2017-8-16 16:45:29
本帖最后由 biotwang 于 2017-8-17 11:04 编辑
此报错已经告知你需要阅读MOS文档 ID 1380295.1- Cannot set an SCN larger than the current SCN.
- If a Streams Capture configuration was imported then the
- Apply that processes the captured messages needs to be
- dropped and recreated. See My Oracle Support article number 1380295.1
复制代码 由于12c中对部分Streams Capture configuration相关功能做了调整。
导入这部分dump数据可能存在问题。
如果你并需要dmp文件中的Streams Capture configuration的话,你怎么操作?- 你可以在导入命令中指定 "STREAMS_CONFIGURATION=N"。
复制代码 如果你不想用到Streams Capture configuration,但是你已经导入了这部分数据了,怎么办?- eg:
- select queue_name, capture_name, rule_set_name, rule_set_owner,
- source_database,negative_rule_set_name, negative_rule_set_owner
- from dba_capture
- where source_database='&GLOBAL_NAME_OF_EXPORT_DB';
复制代码 删除已经导入的那些capture process:- exec dbms_capture_adm.stop_capture('&CAPTURE_NAME');
- exec dbms_capture_adm.drop_capture('&CAPTURE_NAME');
复制代码 注意:仅删除那些导入的capture,而不是那些已经存在的capture。
|
|