WEB开发网
开发学院数据库Oracle 浅议Oracle数据库的集中复制方法 阅读

浅议Oracle数据库的集中复制方法

 2007-05-08 12:08:44 来源:WEB开发网   
核心提示: 5.建立复制管理员mvadmin的数据库连接:create database link ORACLSH connect to proxy_bjoracleidentified by proxy_bjoralceConnect to ... Identified by ...子句指明用什么用

5.建立复制管理员mvadmin的数据库连接:create database link ORACLSH connect to proxy_bjoracle
identified by proxy_bjoralce
Connect to ... Identified by ...子句指明用什么用户连接远程数据库

6.建立复制调度数据库连接作业:begin
dbms_defer_sys.schedule_push(
destination => ’ora92zjk’,interval => ’/*1:hr*/ sysdate + 1’,
next_date => sysdate,stop_on_error => false,
delay_seconds => 0,parallelism => 0);
end;
/

7.授予SHORACL用户(对应SHORACL方案)

相应的权限建立实体化视图:disconnect;
connect system/passwd@BJ;
grant alter session to crm;
grant create cluster to crm;
grant create database link to crm;
grant create sequence to crm;
grant create session to crm;
grant create synonym to crm;
grant create table to crm;
grant create view to crm;
grant create procedure to crm;
grant create trigger to crm;
grant unlimited tablespace to crm;
grant create type to crm;
grant create any snapshot to crm;
grant alter any snapshot to crm;

8.建立复制方案的数据库连接:disconnect;
connect SHORACL/SHORACL@BJ;
create database link ORACLSH connect to ORACL identified
by ORACL;

复制方案的数据库连接和复制管理员的数据库连接要和system用户间里的对应公共数据库连接使用相同的名字,在调度连接时将使用公共数据库连接中指定的数据库全局名或者连接字符串。

上一页  1 2 3 4 5 6 7  下一页

Tags:Oracle 数据库 集中

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