cancel
Showing results for 
Search instead for 
Did you mean: 

Last Restration

Former Member
0 Kudos

How to check , when the last restoration done through SAP in oracle database.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can get this information from the restoration logs in the SAPBackup folder. The restoration log file will be of the format <filename>.rsb.

Hope this helps.

Regards,

Varadharajan M

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, if for restoration are used any external programm (like full backup of your datafiles using Data protector or other tools) you only can check log's generated by this programms. If you use the BRRESTORE or BRRECOVERY for this try to check log's in sapbackup directory .

P.S. from sap you can check in DB14 transaction.

Regards.

Former Member
0 Kudos

How to check the same in MS SQL 2000

Former Member
0 Kudos

How to check the same in MS SQL 2000

Former Member
0 Kudos

In same DB14 you can Check the log files.

Otherwise, check the log from BRtools.

Former Member
0 Kudos

Hi

for MS SQL DB12>Backup and Recovery>Restore History.

Here you will find detailed list of all restores performed on the database.

Thanks

Mushtaq

Former Member
0 Kudos

Sorry luckshmanan

DB14 does not work in SQL 2000

Former Member
0 Kudos

Mushtaq ,

that is for master and model database .......iwnat to know about the full database restoration

Former Member
0 Kudos

Can you please check it, i checked and i am sure that it shows restore history of your SAP 'SID' database.

if not you can also run this script against your database:

USE MSDB 
GO 

SELECT *
FROM RESTOREHISTORY WITH (NOLOCK)
WHERE (DESTINATION_DATABASE_NAME = 'Change_me')
ORDER BY RESTORE_DATE DESC

Thanks

Mushtaq