sybase ASE 整库 备份

阅读更多

首先确保备份服务器正常运行 startserver -f RUN_CHQ_WEB_BS

启动sybase数据库sybase@CHQWEB:/sybase/ASE-12_5/install> ./startserver -f RUN_DB_WEB

然后进入isql

sybase@CHQWEB:/sybdata> isql -U sa -P -S CHQWEB

备份数据库
dump database webdb to "/apps/webdb.dat"

还原数据库
load database webdb from "/apps/webdb.dat"

还原后必须 使用 ONLINE DATABASE

 

 


因为文件的大小是受限制的所以有时候我们不得不备份成多个文件,大小均分 写法如下:

备份数据库
dump database webdb to "/apps/webdb1.dat stripe on  /apps/webdb2.dat  stripe on  ... /apps/webdbn.dat "

还原数据库
load database webdb from "/apps/webdb1.dat stripe on  /apps/webdb2.dat  stripe on  ... /apps/webdbn.dat "



停止服务命令如下:

1.shutdown
Adaptive Server
shutdown
2.shutdown with nowait
Adaptive Server
3.shutdown SYB_BACKUP
Backup Server
4.shutdown REM_BACKUP
Backup Server REM_BACKUP

你可能感兴趣的:(sybase ASE 整库 备份)