Backup Recovery Test: Sap Admin
Backup Recovery Test: Sap Admin
Output as PDF file has been powered by [ Universal Post Manager ] plugin from www.ProfProjects.com
| Page 1/2 |
provide the files it will ask you. It it ask you for Archive logs then, make sure that you have renamed archive logs in Target system with Target SID. Use the below script on Unix. cd /oracle/<TSID>/saparch for i in `ls|grep <SSID>`; do file_name=`echo $i |cut -dD -f2`; mv $i <TSID>${file_name}; done Once the recovery is complete, try to stop and start the database again. 11. Check database communication using "R3trans -d" from <sid>adm user. 12. if it returns error code 0012, then follow the below process.
#sqlplus / as sysdba; SQL> CREATE USER OPS$<SID>ADM IDENTIFIED BY <NEW_PASSWORD> ; SQL> GRANT CONNECT, RESOURCE TO OPS$<SID>ADM; SQL> DROP TABLE OPS$<SID>ADM.SAPUSER; SQL> CREATE TABLE OPS$<SID>ADM.SAPUSER (USERID VARCHAR2(256), PASSWD VARCHAR2(256)); SQL> INSERT INTO OPS$<SID>ADM.SAPUSER VALUES ('SAPR3', 'NEW_PASSWORD'); SQL> ALTER USER SAPR3 IDENTIFIED BY <NEW_PASSWORD>; SQL> ALTER DATABASE RENAME GLOBAL_NAME TO <TSID>; Then again check the result of "R3trans -d". Once the you get return code (0000). Just try to start the sap and perform post installation activity. 1. Run "SM06" and select "Database copy or Database Migration". Reconfigure TMS. I would recommend you just go through the System Copy guide and the following notes. 50088 - Creating OPS$ users on Windows NT-Oracle 361641 - Creating OPS$ users on UNIX 400241 - Problems with ops$ or sapr3 connect to Oracle Regards.
Output as PDF file has been powered by [ Universal Post Manager ] plugin from www.ProfProjects.com
| Page 2/2 |