We have seen the behavior in SSMS that nothing happens when we go to Tasks/Restore/Database. It means that the backup/restore history for the database is very long, and the wizard will take longer to come up since it reads the entire history first. We need to truncate the history. We can run the script below to determine the backup start date.
123SELECTTOP1 backup_start_dateAS'BackUp Start Date'FROMmsdb.dbo.backupsetWITH(NOLOCK)ORDERBYbackup_set_idASC
TIP: If we dont want to do the truncation for now, the quick workaround for this issue will be to go to Databases/Restore Database...
No comments:
Post a Comment