Method 1 – Using SQL Server Management Studio
Example
To run a query to select backup history on database called ‘msdb’, select the msdb database as shown in the following snapshot.
Method 2 – Using T-SQL Script
Use <your database name>
Example
To run your query to select backup history on database called ‘msdb’, select the msdb database by executing the following query.
Exec use msdb
The query will open msdb database. You can execute the following query to select backup history.
Select * from backupset
0 comments:
Post a Comment