Search This Blog

Tuesday 14 April 2015

Finding recovery model type for all sql databases in a server.

Finding recovery model type for all sql databases in a server.

SELECT NAME AS [Database Name]
 ,recovery_model_desc AS [Recovery Model]
FROM sys.databases
GO

No comments:

Post a Comment

Enter your comments here...