Link to home
Create AccountLog in
Avatar of matrix0511
matrix0511

asked on

How can I check to see Which database recovery method is used (full, simple, etc…)?

We use SQL 2008 server running on OS: Windows 2008 R2.

I'm not very familiar with SQL 2008. I've only used older versions.

How can I check to see Which database recovery method is used (full, simple, etc…)?

Please provide steps.

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of James Murrell
James Murrell
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
I use this to populate my DBA Dashboard

SELECT @@SERVERNAME AS ServerName, database_id AS ServerDatabaseID, Name, create_date as CreateDate,
CASE	WHEN compatibility_level = 80 THEN 'SQL 2000' 
		WHEN compatibility_level = 90 THEN 'SQL 2005'
		WHEN compatibility_level = 100 THEN 'SQL 2008'
		WHEN compatibility_level = 110 THEN 'SQL 2012'
		ELSE NULL END AS DatabaseCompatibilityLevel,
Recovery_model_Desc AS RecoveryModel
FROM sys.databases

Open in new window

Or you could do each DB Manually in SSMS,

Right Click the DB, Properties, Options
Avatar of matrix0511
matrix0511

ASKER

@Tony303, what do you mean by "DBA Dashboard"??
Hi Matrix,
I made a small database and SSRS reports that gather the health of my SQL Servers and Databases.
The DBA dashboard is just the glance at everything in one screen.