马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?站点注册
×
数据库为12.5.0.3,日志报Error: 1105, Severity: 17, State: 4 Can't allocate space for object 'syslogs' in database 'xxx' b ecause 'logsegment' segment is full/has no free extents. If you ran out of space in syslogs, dump the transacti on log. Otherwise, use ALTER DATABASE or sp_extendsegment to increase size of the segment. 检查SYBASE文档提示 Recovery 1105 Errors on a User Database Use the following procedure to correct 1105 errors on a user database which occur during recovery: 1.Manually set the database's status to no chkpt on recovery and single-user: Warning! Because the database was marked suspect on the original recovery attempt, this procedure also resets some internal status bits to allow the database to recover normally. Therefore, do not use this procedure under any other circumstances, or you may create additional serious problems. 1> sp_configure "allow updates", 1 2> go 1> begin transaction 2> go 1> update master..sysdatabases 2> set status = status & ~256 3> where name = "database_name" 4> go 1> update master..sysdatabases 2> set status = status | 4112 3> where name = "database_name" 4> go 2.Check that each of the above update commands affected only one row. If more than one row was affected, issue a rollback transaction. Otherwise, commit the transaction and shut down Adaptive Server: 1> commit transaction 2> go 1> shutdown 2> go 3.Restart Adaptive Server. 4.Dump the transaction log with the no_log option and reset the database status: 1> use master 2> go 1> dump tran database_name with no_log 2> go 1> sp_dboption database_name, "no chkpt", false 2> go 1> sp_dboption database_name, single, false 2> go 1> use database_name 2> go 1> checkpoint 2> go 1> sp_configure "allow updates", 0 2> go 但是并管理员并未进行任何操作,而数据库也能使用,何故? |