偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

Oracle數(shù)據(jù)復(fù)制如何正確操作?

數(shù)據(jù)庫 Oracle
我們今天主要向大家介紹的是Oracle數(shù)據(jù)復(fù)制的實際操作步驟,如果你對其相關(guān)的實際操作有興趣的話,你就可以對以下的文章點擊觀看了。

以下的文章主要描述的是Oracle數(shù)據(jù)復(fù)制,以及Oracle數(shù)據(jù)復(fù)制在實際操作中有哪些具體的操作步驟是起到至關(guān)重要的地位。以下就是文章的詳細(xì)內(nèi)容介紹,希望會給你帶來一些幫助在此方面。

interval:間隔時段,sysdate + 1表示間隔一天,sysdate+ 1/24表示間隔一小時

delay_seconds:當(dāng)延遲隊列沒有延遲事件時停止被次清除操作的延遲時間。

4.為實體化視圖站點建立復(fù)制代理。創(chuàng)建復(fù)制代理用戶并授予視圖接受方權(quán)限。復(fù)制代理是復(fù)制接收方連接主體站點的用戶

  1. disconnect;   
  2. connect system/passwd@SH;   
  3. create user proxy_bjOracle identified by proxy_bjOracle;   
  4. begin   
  5. dbms_repcat_admin.register_user_repgroup(   
  6. user_name=>’proxy_bjOracle,   
  7. privilege_type => ’proxy_snapadmin’,list_of_gnames => NULL);   
  8. end;   
  9. /   
  10. grant select_catalog_role to proxy_bjOracle;  

5. 創(chuàng)建主體組:

  1. disconnect;   
  2. connect repadmin/repadmin@SH;   
  3. begin   
  4. dbms_repcat.create_master_repgroup(gname=>’sh_rep’);   
  5. end;   
  6. /  

6.Oracle數(shù)據(jù)復(fù)制: 向主體組中添加復(fù)制對象:

a) 添加表:

  1. begin   
  2. dbms_repcat.create_master_repobject(   
  3. gname=>’sh_rep’,   
  4. type=>’TABLE’,   
  5. oname=>’ CREDIT_CARD’   
  6. sname=>’SHORACL’   
  7. use_existing_object=>TRUE,   
  8. copy_rows=>TRUE);   
  9. end;  

以上的相關(guān)內(nèi)容就是對Oracle數(shù)據(jù)復(fù)制的介紹,望你能有所收獲。
 

【編輯推薦】

  1. Oracle10g中current_scn的正確計算運行
  2. win2000企業(yè)版下正確卸載Oracle 9i
  3. Oracle后臺進程的功能簡介
  4. 對Oracle 11g中的XML正確理解
  5. 在Oracle存儲過程中正確的實現(xiàn)分頁

 

責(zé)任編輯:佚名 來源: 互聯(lián)網(wǎng)
相關(guān)推薦

2010-05-07 16:50:42

Oracle trun

2010-05-05 17:53:39

Oracle 8i

2010-05-10 12:39:42

Oracle OCR鏡

2010-04-29 11:53:42

Oracle數(shù)據(jù)庫

2010-06-01 12:51:23

MySQL數(shù)據(jù)庫

2010-05-05 11:17:55

Oracle數(shù)據(jù)庫

2010-05-07 13:03:01

Oracle通過存儲過

2010-05-06 09:52:11

Oracle發(fā)送郵件

2010-05-05 09:03:07

Oracle實現(xiàn)top

2010-05-07 14:10:05

Oracle數(shù)據(jù)導(dǎo)出

2010-04-26 18:32:48

Oracle數(shù)據(jù)庫

2011-08-02 10:37:27

Oracle數(shù)據(jù)庫archivelog文

2009-12-30 10:56:29

ADO數(shù)據(jù)庫

2011-05-17 14:02:44

Oracle 8高級復(fù)制

2010-04-06 14:26:41

Oracle復(fù)制表

2010-10-28 11:29:18

ORACLE用戶權(quán)限

2010-05-10 16:25:15

Oracle組件

2010-05-06 09:19:03

Oracle表

2010-05-10 10:46:07

Oracle存儲過程

2011-04-12 11:12:20

Oracle存儲過程
點贊
收藏

51CTO技術(shù)棧公眾號