Technical Article

Find The Database Recovery Model

,

A simple script to find the database recovery model. Cut & paste into Query Analyser

create table #temp (name varchar(20), db_size nvarchar(50), owner varchar(50), dbid smallint, created datetime, status varchar(8000), 
compatability_level smallint)
insert into #temp exec sp_helpdb
select name,replace(replace(substring(status, patindex ('%recovery=%',status)+9, 11), ', Ver',''),'FULLsi','FULL') as recovery_model
from #temp
drop table #temp

Rate

4.5 (2)

You rated this post out of 5. Change rating

Share

Share

Rate

4.5 (2)

You rated this post out of 5. Change rating