Skip to main content

Restore

To restore the file /backups/SQLServer/MM.bak into the TDC repository database MM use the following commands:


USE [master]
GO
ALTER DATABASE MM SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
RESTORE DATABASE [MM] FROM DISK = N'/backups/SQLServer/MM.bak' WITH REPLACE
GO

You may refer to the Microsoft SQL Server backup and restore documentation for more details on the above commands.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!