Recovery options

  • How can I find out what recovery option is set for a database,  like

    RECOVERY FULL | BULK_LOGGED | SIMPLE

    Based, on the setting retrieved, I need to change it to a specific setting using Alter database.

  • Just go into enterprise manager and right click the database. Go to properties and on the options tab it will tell you what recovery model is set

  • you can also do this in QA...

    SELECT DATABASEPROPERTYEX('dbName', 'RECOVERY')







    **ASCII stupid question, get a stupid ANSI !!!**

  • You can also use

    sp_helpdb 'DB_Name'

    This will show recovery option in the "status" field, along with all kinds of other info about the database.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply