sql server - How can I tell what recovery model my DB is using? -


is there sql command can run recovery model?

select databasepropertyex('yourdatabasename', 'recovery') 

or

select d.recovery_model_desc      sys.databases d     d.name = 'yourdatabasename' 

Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -