SYbase解决Can't allocate space for object 'syslogs'错误

Can't allocate space for object 'syslogs' in database 'master' because 'logsegment' segment is full/has no free extents. If you ran out of space in syslogs, dump the transaction log. Otherwise, use ALTER DATABASE or sp_extendsegment to increase size of the segment.

 

1> dump tran master with no_log
2> go
1> dump transaction master with truncate_only
2> go
1>

你可能感兴趣的:(SYbase解决Can't allocate space for object 'syslogs'错误)