程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SyBase數據庫 >> SyBase綜合文章 >> 重建數據庫日志

重建數據庫日志

編輯:SyBase綜合文章
1)賦予sa用戶Sybase_ts_role的角色
isql -Usa -P
1>sp_role "grant","Sybase_ts_role",sa
2>go
1>quit

(2)將數據庫置為"bypass recovery"狀態
isql -Usa -P
1>sp_configure "allow updates",1
2>go
1>use master
2>go
1>update sysdatabases set status=-32768
2>where name="database_name"
3>go
1>shutdown with nowait
2>go

(3)rebuild數據庫日志
重啟Server
isql -Usa -P
1>use master
2>go
1>dbcc rebuild_log(database_name,1,1)
2>go
1>shutdown with nowait
2>go

(4)重啟server
1>use master
2>go
1>update sysdatabases set status=0 where name="database_name"
2>go
1>sp_configure "allow updates",0
2>go
1>shutdown with nowait
2>go

(5)在重啟server之後,如果數據庫恢復正常,rebuild log工作將會成功完成,否則要恢復數據庫備份,使用dump database或bcp命令。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved