开发者

how to create backup of my database in SQL Server

How to create back of my database which is made in SQL Server Express edition?

开发者_C百科

I want to create backup and restore it how could this do please tell me


Use the BACKUP command.

For example:

BACKUP DATABASE AdventureWorks2008R2
TO DISK='Z:\SQLServerBackups\AdvWorksData.bak' 
WITH FORMAT
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜