WEB开发网
开发学院数据库Oracle Oracle数据库10gR2中stream多源复制方法 阅读

Oracle数据库10gR2中stream多源复制方法

 2008-09-02 12:45:45 来源:WEB开发网   
核心提示:在10gR2中,oracle简化了stream的配置的全过程,在9iR2及10gR1中,需要针对stream的捕获、传播、应用进程进行配置的步骤,已经被dbms_streams_adm新提供的过程(pre_instantiation_setup/post_instantiation_setup)给封装起来啦,Oracl

在10gR2中,oracle简化了stream的配置的全过程,在9iR2及10gR1中,需要针对stream的捕获、传播、应用进程进行配置的步骤。

已经被dbms_streams_adm新提供的过程(pre_instantiation_setup/post_instantiation_setup)给封装起来啦。

配置stream只需要调用两个存储过程就可以搞定啦,真是太激动人心啦,下面简单地介绍一下dbms_streams_adm的新过程的用法。

1.在stream进行配置前,需要做些准备工作

a 源库与目标库初始化参数的设置

  alter system set aq_tm_processes=4 scope=spfile;
  alter system set job_queue_processes=5 scope=spfile;
  alter system set global_names=true scope=spfile;
  alter system set streams_pool_size=51m scope=spfile;

说明streams_pool_size在生产环境中最好>200m

b 源库与目标库tnsnames.ora配置

确保正确,可用tnsping通

c 源库与目标库复制管理员的创建

 create user strmadmin identified by strmadminpw
  default tablespace &tbs_name quota unlimited on &tbs_name;
  grant connect, resource, dba to strmadmin;

d 源库与目标库创建互连的数据链

  connect strmadmin/strmadminpw@test96;
  create database link test99.net connect to strmadmin
  identified by strmadminpw using ’test99’;
  connect strmadmin/strmadminpw@test99;
  create database link test96.net connect to strmadmin
  identified by strmadminpw using ’test96’;

1 2 3 4 5 6  下一页

Tags:Oracle 数据库 gR

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接