搜尋
首頁資料庫mysql教程Oracle 单表流复制 stream

把Oracle单表流复制搞定,由于oracle stream 操作步骤多,之前遇到许多问题,没有理清思路或者说自己对此的理解不够,所以失败。

把Oracle单表流复制搞定,由于oracle stream 操作步骤多,之前遇到许多问题,

没有理清思路或者说自己对此的理解不够,所以失败。对于重要表,流复制类似dataguard应用日志,主服务器

捕获,然后传递,从服务器接受,如此而以。简单记录一下主要步骤。

1 主服务器 os: windows  sid:rman  数据库版本10.2.0.1

  从服务器 os:   windows   sid  format  数据库版本10.2.0.1

2 主、从数据库分别执行如下的语句:
Sqlplus ‘/ as sysdba’
alter system set aq_tm_processes=2 scope=both;
alter system set global_names=true scope=both;
alter system set job_queue_processes=10 scope=both;
alter system set parallel_max_servers=20 scope=both;
alter system set undo_retention=3600 scope=both;
alter system set nls_date_format='YYYY-MM-DD HH24:MI:SS' scope=spfile;
alter system set streams_pool_size=25M scope=spfile;--这个我没执行,理由是oracle自动分配了
alter system set utl_file_dir='*' scope=spfile;
alter system set open_links=4 scope=spfile;

3 主从机设置归档 mout状态下alter database archivelog 另开启alter system set  log_archive_start=true;

  查看归档是否成功select recid, name, first_time from v$archived_log;

4 主从机表空间和用户

  create tablespace stream_tbs datafile 'g:\oracle\oradata\rman\stream01.dbf' size 200m

  autoextend on extent management local uniform size 1m segment space management auto;

表空间已创建。

-- 创建streams管理用户,并授予dba权限

JSSWEB> create user test identified by test default tablespace stream_tbs;

用户已创建。

--将logminer的数据字典从system表空间转移到新建的表空间,防止撑满system表空间
execute dbms_logmnr_d.set_tablespace('tbs_stream');

-- 由于streams用户操作需要较多权限,此处仅用于演示,简便期间直接授予dba权限

 授权test管理用户

JSSWEB> grant dba to test;

begin
dbms_streams_auth.grant_admin_privilege(
grantee => 'test',
grant_privileges => true);
end;


5 主从机表空间和用户

  create tablespace stream_tbs datafile 'd:\oracle\oradata\rman\stream01.dbf' size 200m

  autoextend on extent management local uniform size 1m segment space management auto;

表空间已创建。

-- 创建streams管理用户,并授予dba权限

JSSWEB> create user strmadmin identified by strmadmin default tablespace stream_tbs;

用户已创建。

--将logminer的数据字典从system表空间转移到新建的表空间,防止撑满system表空间
execute dbms_logmnr_d.set_tablespace('tbs_stream');

-- 由于streams用户操作需要较多权限,此处仅用于演示,简便期间直接授予dba权限

 授权test管理用户

JSSWEB> grant dba to strmadmin ;

begin
dbms_streams_auth.grant_admin_privilege(
grantee => 'strmadmin',
grant_privileges => true);
end;


6 配置网络连接

 主数据库(tnsnames.ora)中添加从数据库的配置。
 RMAN =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.103)(PORT = 1521))
)
(CONNECT_DATA =
(SID = rman)
(SERVER = DEDICATED)
)
)
配置从环境tnsnames.ora
从数据库(tnsnames.ora)中添加主数据库的配置。
FORMAT =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.104)(PORT = 1521))
)
(CONNECT_DATA =
(SID = format)
(SERVER = DEDICATED)
)
)


7 创建database link

  主:create database link format connect to strmadmin identified by strmadmin using 'format';

  从:create database link rman  connect to strmadmin identified by strmadmin using 'rman '; 

 然后相互tnsping 或 select sysdate from dual@format/rman;

8  主库 exec dbms_streams_adm.set_up_queue();

    从库  exec dbms_streams_adm.set_up_queue();

 

9 创建捕获规则 

  begin

   dbms_streams_adm.add_table_rules(

   table_name => 'scott.emp',

   streams_type => 'capture',

   streams_name =>'capture_stream',

   queue_name => 'test.streams_queue',

   include_dml => true,

   include_ddl => true,

   inclusion_rule => true);

   end;
--创建传播规则

begin

   dbms_streams_adm.add_table_propagation_rules(

   table_name =>'scott.emp',

   streams_name => 'sour_to_targ',

   source_queue_name =>'test.streams_queue',

   destination_queue_name => 'strmadmin.streams_queue@format',

   include_dml => true,

   include_ddl => true,

   source_database =>'rman',

   inclusion_rule => true,

   queue_to_queue => true);

 end;

select capture_name,status from dba_capture;

CAPTURE_NAME                   STATUS

------------------------------ --------

CAPTURE_STREAM                 DISABLED

linux

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
將用戶添加到MySQL:完整的教程將用戶添加到MySQL:完整的教程May 12, 2025 am 12:14 AM

掌握添加MySQL用戶的方法對於數據庫管理員和開發者至關重要,因為它確保數據庫的安全性和訪問控制。 1)使用CREATEUSER命令創建新用戶,2)通過GRANT命令分配權限,3)使用FLUSHPRIVILEGES確保權限生效,4)定期審計和清理用戶賬戶以維護性能和安全。

掌握mySQL字符串數據類型:varchar vs.文本與char掌握mySQL字符串數據類型:varchar vs.文本與charMay 12, 2025 am 12:12 AM

chosecharforfixed-lengthdata,varcharforvariable-lengthdata,andtextforlargetextfield.1)chariseffity forconsistent-lengthdatalikecodes.2)varcharsuitsvariable-lengthdatalikenames,ballancingflexibilitibility andperformance.3)

MySQL:字符串數據類型和索引:最佳實踐MySQL:字符串數據類型和索引:最佳實踐May 12, 2025 am 12:11 AM

在MySQL中處理字符串數據類型和索引的最佳實踐包括:1)選擇合適的字符串類型,如CHAR用於固定長度,VARCHAR用於可變長度,TEXT用於大文本;2)謹慎索引,避免過度索引,針對常用查詢創建索引;3)使用前綴索引和全文索引優化長字符串搜索;4)定期監控和優化索引,保持索引小巧高效。通過這些方法,可以在讀取和寫入性能之間取得平衡,提升數據庫效率。

mysql:如何遠程添加用戶mysql:如何遠程添加用戶May 12, 2025 am 12:10 AM

ToaddauserremotelytoMySQL,followthesesteps:1)ConnecttoMySQLasroot,2)Createanewuserwithremoteaccess,3)Grantnecessaryprivileges,and4)Flushprivileges.BecautiousofsecurityrisksbylimitingprivilegesandaccesstospecificIPs,ensuringstrongpasswords,andmonitori

MySQL字符串數據類型的最終指南:有效的數據存儲MySQL字符串數據類型的最終指南:有效的數據存儲May 12, 2025 am 12:05 AM

tostorestringsefliceflicyInmySql,ChooSetherightDataTypeBasedyOrneOrneEds:1)USEcharforFixed-LengthStstringStringStringSlikeCountryCodes.2)UseVarcharforvariable-lengtthslikenames.3)USETEXTCONTENT.3)

mysql blob vs.文本:為大對象選擇正確的數據類型mysql blob vs.文本:為大對象選擇正確的數據類型May 11, 2025 am 12:13 AM

選擇MySQL的BLOB和TEXT數據類型時,BLOB適合存儲二進制數據,TEXT適合存儲文本數據。 1)BLOB適用於圖片、音頻等二進制數據,2)TEXT適用於文章、評論等文本數據,選擇時需考慮數據性質和性能優化。

MySQL:我應該將root用戶用於產品嗎?MySQL:我應該將root用戶用於產品嗎?May 11, 2025 am 12:11 AM

No,youshouldnotusetherootuserinMySQLforyourproduct.Instead,createspecificuserswithlimitedprivilegestoenhancesecurityandperformance:1)Createanewuserwithastrongpassword,2)Grantonlynecessarypermissionstothisuser,3)Regularlyreviewandupdateuserpermissions

MySQL字符串數據類型說明了:選擇適合您數據的合適類型MySQL字符串數據類型說明了:選擇適合您數據的合適類型May 11, 2025 am 12:10 AM

mySqlStringDatatAtatPessHouldBechoseBasedondatActarActeristicsAndusecases:1)USEcharforFixed lengthStstringStringStringSlikeCountryCodes.2)usevarcharforvariable-lengtthslikeLikenames.3)usebarnionororvarinyorvarinyorvarybinarydatalgebenedaTalgeextocrabextrapon.4)

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

MantisBT

MantisBT

Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!