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

razor - Is this a bug in WebMatrix PageData? -

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

python - How to set the color of a single cell in a pygtk treeview? -