How to recover a database without restoring (Transact-SQL)

To recover a database without restoring

Examples

This example recovers the MyNwind database without restoring from a backup.

-- Restore database using WITH RECOVERY.

RESTORE DATABASE MyNwind

    WITH RECOVERY

  

See Also
Recovering a Database Without Restoring RESTORE

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.