Thursday, November 13, 2014

Restore sql database by query

RESTORE DATABASE [Database name] FROM  DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL10_50.OMEXDEV\MSSQL\Backup\ump.bak' WITH  FILE = 1,  NOUNLOAD,  STATS = 10
GO

No comments:

Post a Comment

Integrating OpenAI / ChatGPT in ASP.NET Core Web API

 This guide shows how to build a production-ready AI API using ASP.NET Core with: Clean Architecture, streaming responses, database storage,...