备份本地的数据库到远程机上

新建一个backup.sql文件 use test GO backup database test to disk='d:\db_backup\test.bak' with init GO     新建一个r_restore.sql文件 use master restore database test from disk='d:\db_backup\test.bak' with replace,
相关文章
相关标签/搜索