设置密码保护的SqlServer数据库备份文件与恢复文件的方法

前端之家收集整理的这篇文章主要介绍了设置密码保护的SqlServer数据库备份文件与恢复文件的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

设置密码保护sqlServer数据库备份文件! 备份sqlServer数据库
Backup Database [数据库] To disk='c:\MysqL'+ replace(replace(replace(replace(CONVERT(varchar,getdate(),121),'-',''),' ',':','.','') +'.bak' With Password = '123',init;
恢复sqlServer数据库
Restore Database [数据库] From disk=数据库备份文件地址 With Password = '123';

原文链接:/mssql/63919.html

猜你在找的MsSQL相关文章