SAP Sybase ASE Warm Standby Database Using Replication Server Database Tutorials
SAP Sybase ASE Warm Standby Database Using Replication Server Database Tutorials
We are going to create warm standby backup of SAP Sybase ASE Prod1 server to Standby1 server using
Sybase Replication Server REP15_7 for a database named : testdb. It comprises to the following 15 steps.
Pre-Requisites :
Step 2: Create a login that on both Sybase ASE Servers and assign replication_role
https://dbtut.com/index.php/2018/09/05/sap-sybase-ase-warm-standby-database-using-replication-server/ 1/7
26/9/21 11:04 SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials
1 use master
2 go
3 sp_addlogin test_maint,xxxxx
4 go
5 grant role replication_role to test_maint
6 go
Step 3: Add the user to the dbo profile of the database that is invlovled in this process.
1 use testdb
2 go
3 sp_addalias test_maint,dbo
4 go
Step 5: Install the replication script for both Primary & Standby Servers
https://dbtut.com/index.php/2018/09/05/sap-sybase-ase-warm-standby-database-using-replication-server/ 2/7
26/9/21 11:04 SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials
Login to rep server and browse the script from location $SYBASE/REP15-5_5/scripts and execute this:
This user will be used to connection replication agent from Sybase ASE Servers
Step 9: Create a connection from the replication server to the standby server
1 admin logical_status
2 go
3 LASE.testdb
4 [107] Prod1.testdb
5 Suspended/
6 [108] Standby1.testdb
7 Active/
8 [16777317] REP15_7
9 None
10 None
https://dbtut.com/index.php/2018/09/05/sap-sybase-ase-warm-standby-database-using-replication-server/ 4/7
26/9/21 11:04 SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials
Step 11: Mark the database for replication and grant permissions
Execute the following command on primary server to grant permissions and activate the database to
Execute the following command on primary server to configure replication agent on primary server
1 use testdb
2 go
3
4 sp_config_rep_agent 'testdb', 'enable', 'REP15_7', 'rep_user', 'xxxxx'
5 go
6 sp_config_rep_agent 'testdb', 'send warm standby xacts', true
7 go
8 sp_setreplicate rs_marker,'true'
9 go
10 sp_setreplicate rs_update_lastcommit,'true'
11 go
12
13 Execute the following command to start replication agent on primary server
14
15 sp_start_rep_agent 'testdb'
16 go
https://dbtut.com/index.php/2018/09/05/sap-sybase-ase-warm-standby-database-using-replication-server/ 5/7
26/9/21 11:04 SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials
Step 15: Resume the connection on Primary & Standby Servers and verify the replication status
Connect the replication server and execute the following commands to resume the connections of primary
& secondary servers to replication server respectively.
https://dbtut.com/index.php/2018/09/05/sap-sybase-ase-warm-standby-database-using-replication-server/ 6/7
26/9/21 11:04 SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials
Step 16: Validate the replication between primary & standby servers
Primary:
1 use testdb
2 go
3 CREATE TABLE dbo.TEST1 ( COL1 int NOT NULL, COL2 varchar(25) NULL ) LOCK ALLPAGES
4 GO
5
6 insert into dbo.TEST1 values (5,'B')
7
8 select * from TEST1
9
10 Secondary:
11
12 select * from TEST1
DONE!!!
https://dbtut.com/index.php/2018/09/05/sap-sybase-ase-warm-standby-database-using-replication-server/ 7/7