程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SyBase數據庫 >> SyBase綜合文章 >> sybase整庫復制步驟

sybase整庫復制步驟

編輯:SyBase綜合文章
本文介紹Sybase的整庫復制步驟。 復制服務器名字 : HRB_REP 主數據庫服務器和主庫HRB_HB.maindb to 備份數據庫服務器和備份庫HRB_HB_REP.maindb


1. 復制服務器和ASE數據庫的interfaces中都要包括上面三個server的接口信息



2. 用復制服務器安裝的用戶登錄。







3. 使用/repsrv/REP-12_5/install/rs_init 安裝復制服務器



  (ctrl-a 接受  ctrl-b 向後 ctrl-x 退出)



  1> Configure a Server product



  2> Replication Server



  3> Install a new Replication Server



  3.1> Replication Server Information



       3.1.1 輸入復制服務器的名字  HRB_REP



       3.1.2 Is this Replication Server the ID Server 選擇Yes



  3.2> Replication Server System Database



       3.2.1 RSSD SQL Server Name: 輸入安裝復制服務器系統庫的數據庫服務器



             名字HRB_HB_REP



       3.2.2 Create RSSD : 如果沒有建過這個庫,選Yes



       3.2.3 SA passWord : 輸入sa口令



  3.3> RSSD Device Information



       3.3.1 Size of the RSSD Database: 輸入HRB_REP_RSSD數據庫的大小(30-50M)



       3.3.2 RSSD device name : 輸入數據庫設備的名字



       3.3.3 如果數據庫中沒有建立設備,選擇 Create the RSSD device 並輸入設備



             文件名和大小



       3.3.4 Size of the RSSD Database: 輸入HRB_REP_RSSD日志的大小(30-50M)



  3.4> Disk Partition



       3.4.1 Partition文件必須存在,可以使用 >filename(或touch filename) 創建



       3.4.2 Disk Partition Path: 輸入partition文件的文件名



       3.4.3 Logical IdentifIEr for Disk Partition: 輸入partition在復制服務器中的邏輯名



       3.4.4 Size of Disk Partition: 輸入Partiton的大小(一定要分配足夠大的空間,



             否則在大的事務復制時會因為partition滿而出錯)



  3.5> 如果所有選項全部為complete狀態,按ctrl-a創建復制服務器



  創建完後不要退出rs_init,後面還要用







4. 在主點數據庫和備份點數據庫服務器中分別執行



  設置數據庫服務器可以復制



  isql -Usa -P -S



  1> use master



  2> go



  1> sp_configure 'enable rep agent threads',1



  2> go



  如果maindb沒有設置select into 選項,需要如下設置



  1> use master



  2> go



  1> sp_dboption maindb,'select into',true



  2> go



  1> use maindb



  2> go



  1> checkpoint



  2> go



5. 在復制服務器中執行



  isql -Usa -P -S



  1> create logical connection to HRB_HB.maindb



  2> go



6. 在rs_init中增加主庫到復制中,選擇 add a database to the replication system



  6.1> Replication Server Information



  6.1.1> 輸入復制服務器名字HRB_REP



  6.2> Database Information



  6.2.1> SQL Server Name: 輸入主數據庫服務器名HR
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved