Home > Database > Mysql Tutorial > body text

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

WBOY
Release: 2016-06-07 18:03:52
Original
1033 people have browsed it

设置密码保护的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';

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!