紧急求救
求教各位大侠,我单位用2003系统使用12.5版本的sybase数据库,今天数据库崩溃,因为有数据没能及时备份,我重装数据库后,新建了和原数据库相同的设备,并用原数据设备覆盖了新建设备。但数据库不能联接。请教各位会是什么问题?(原11.9版本我曾用相同方法可以正常使用)<br/><br/> <p>数据设备没问题的话应该是日志设置被挂起了,你可以参考一下这个,我用过管用,呵呵,不知道你行不行</p><p></p><p> use master <br/> <br/> select dbid <br/> from sysdatabases <br/> where name = "test" <br/> <br/> select * from sysdatabases <br/> where dbid = 7 <br/> <br/> sp_configure "allow update", 1 <br/> <br/> update sysdatabases <br/> set status = -32768 <br/> where dbid = 7 <br/> <br/> reboot <br/> <br/> sp_role "grant", "sybase_ts_role", sa <br/> <br/> dbcc rebuild_log(test, 0, 0) <br/> <br/> dbcc rebuild_log(test, 1, 1) <br/> <br/> update sysdatabases <br/> set status = 0 <br/> where dbid = 7 <br/> <br/> sp_configure "allow update", 0 <br/> <br/> reboot <br/> <br/> select * from spt_values <br/> order by type, number <br/> where type = 'Q' <br/> where type = 'D' <br/> where number = -1 <br/> <br/> dump transaction test with truncate_only</p><p></p><p></p> <p>换硬件吧~~这样不是解决问题的办法</p>
页:
[1]