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

Complete Authentication System in ASP.NET Core using JWT

JWT (JSON Web Token) authentication is widely used for securing APIs in modern applications. In this article, we will build a complete authe...