Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Suspected Database

    When ever you find that the data base is in suspect mode use the below script.

    Exec Sp_resetstatus ‘Yourdbname’

    Alter database yourdbname set emergency

    Dbcc checkdb(yourdbname)

    Alter database yourdbname set single_user with rollback immediate

    Dbcc...

  • RE: Transaction log growth

    Hi dude when the transactions will happens automatically the log size will grow,so on the time there is an option to shrink the log file,below are the command executed in...

Viewing 2 posts - 1 through 2 (of 2 total)