服务器 频道

Sybase ASE远程备份服务器的配置

  【IT168 服务器学院】How to dump a database to another computer

  假设本地为A,远程为B

  1. 在A建立数据库服务SQL_A,备份服务BACK_A
  2. 在B建立SQL_B和BACK_B
  3. 在A和B中修改配置
    • >sp_configure "allow remote access",1
    • >go
  4. 在A的interfaces中增加BACK_B
  5. 在SQL_A中
    • >sp_addserver BACK_B
    • >go
  6. 在SQL_A中执行远程备份
    • >dump database db_name to "/../../xx.data" at BACK_B
    • >go
0
相关文章