HI All,
Please be informed that, SRS installation on Primary DB is successful.
I had uninstalled the SRS & DR Agent on Primary DB that failed.The SRS & DR Agent on Standby DB was uninstalled followed by uninstallation of Standby DB.
Following activities were performed in order to successfully complete the SRS Setup
Prerequisite: EEC6 EHP6 is already installed with Sybase as DB on Primary DB
Set the following parameters on Primary DB:
1. sp_dboption SW1, 'trunc log on chkpt', 'false'
2.go
(This will turn OFF the truncation of transaction log on checkpoint)
3. sp_dpoption SW1, 'full logging for all', 'true'
4. go
5. Install the Empty DB on Standby DB followed by installation of SRS & DR Agent on Standby DB (disable the configure check box in the Sap Installer).
6. SRS & DR Agent was installed on Primary DB (enable the configure chcek box in the Sap Installer).
7. Sap Installer on Primary DB promts for manual materialization of the Standby DB.
8. Dump database to a file on Primary DB
dump database SW1 to ‘E:\dump_db\ dump_05_06_2015.dmp‘ with compression='101'
9. Set the parameter after dump database on Primary DB
sp_dboption SW1, 'enforce dump tran sequence', 'true'
go
10. Copy the dump to Standby DB
11. Load the database of Standby DB using the dump of Primary DB
load database SW1 from ‘E:\dump_db\ dump_05_06_2015.dmp‘
12. Bring the Standby database online
online databse SW1
go
13. Resume the installer on Primary DB, the installer cheks for the replication marks and finishes successfully.
I have tested the relpication scenario and it works.
Test case:
1. Created a user Test1 is Prmary DB (using tcode SU01)
2. Executed the select query on Standby DB
select * from SAPSR3.USR02 where BNAME='TEST1'and MANDT='000'
3. SQL query is successfuly able to show the TEST1 user details from USR02 table.
thanks
Sai