How to dump a database to another computer
假设本地为A,远程为B
- 在A建立数据库服务SQL_A,备份服务BACK_A
- 在B建立SQL_B和BACK_B
- 在A和B中修改配置
- >sp_configure "allow remote access",1
- >go
- 在A的interfaces中增加BACK_B
- 在SQL_A中
- 在SQL_A中执行远程备份
- >dump database db_name to "/../../xx.data" at BACK_B
- >go
阅读(2802) | 评论(0) | 转发(0) |