Hi Gurpal,
Thank you for your valuable reply
Do I need to do your mentioned steps after below steps
RECOVER DATABASE USING BACKUP CONTROL FILE UNTIL CANCEL;
AUTO.
once recovery is done CANCEL.
Alter database open resetlogs.
status is open.
AS YOU MENTIONED
Make sure listener and DB should be up.
Determine Schema Owner
SQL> SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'T000';
Check the OWNER of “SAPUSER”
SQL>SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'SAPUSER';
Create OPS$ User
Use the oradbusr.sql script. This script is attached to the note 50088. The script is valid for Oracle and UNIX. Use the following syntax
SQL> @ORADBUSR.sql SAPR3 UNIX (SID) X
Check the OWNER of “SAPUSER" after exceute command
SQL>SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'SAPUSER';
If the system returns an owner <owner> other than OPS$<sid>ADM (OPS$SIDADM) of PRD, you must
delete the relevant SAPUSER tables:
SQL> DROP TABLE “OPS$SIDADM".SAPUSER;
and after that check the output of (R3trans -d)
set the value in profile parameter
To ensure no background jobs after the start (Rdisp/wp_no_btc =0)
(Login/no_automatic_user_sapstar =0 )
or Any table spaces need to be create ???? PSAPTEMP ??? or any.
Thanks & Regards
RJ