H
hcx
Unregistered / Unconfirmed
GUEST, unregistred user!
在DELPHI5中:
....can't allocate space for object '-677' in data tempdb
because the 'system' segment is full, if you ran out of space in sort
failed. out of space or locks in database 'tempdb'. process stopped.
use step or run to continue.
在SQL SERVER6.5中执行一sql语句时有如下错误:
Msg 1105, Level 17, State 1
Can't allocate space for object '-837' in database 'tempdb'
because the 'system' segment is full. If you ran out of space in
Syslogs, dump the transaction log. Otherwise,
use ALTER DATABASE or sp_extendsegment to increase
the size of the segment.
Msg 1510, Level 20, State 2
Sort failed: Out of space or locks in database 'tempdb'
用 sp_spaceused syslogs, @updateusage=true 可以看到:
name rows reserved
-------------------- ----------- ---------
syslogs 1034691 25520 KB
data index_size unused
------------------ ------------------ -------
25520 KB 0 KB 0 KB
现有不明的是我的数据库的数据设备与log设备是分开的
数据/log的空间都没有满,而这消息讲segment满了,
dump the transaction log 我认为不能从根本上解决问题,
ALTER DATABASE 也不过把数据库加大而我现在至少有200M空间,
sp_entemsegment我没用过应该差不多
请问怎么才能解决这个问题? 还有syslogs的空间是由谁来分配且怎么分配?
....can't allocate space for object '-677' in data tempdb
because the 'system' segment is full, if you ran out of space in sort
failed. out of space or locks in database 'tempdb'. process stopped.
use step or run to continue.
在SQL SERVER6.5中执行一sql语句时有如下错误:
Msg 1105, Level 17, State 1
Can't allocate space for object '-837' in database 'tempdb'
because the 'system' segment is full. If you ran out of space in
Syslogs, dump the transaction log. Otherwise,
use ALTER DATABASE or sp_extendsegment to increase
the size of the segment.
Msg 1510, Level 20, State 2
Sort failed: Out of space or locks in database 'tempdb'
用 sp_spaceused syslogs, @updateusage=true 可以看到:
name rows reserved
-------------------- ----------- ---------
syslogs 1034691 25520 KB
data index_size unused
------------------ ------------------ -------
25520 KB 0 KB 0 KB
现有不明的是我的数据库的数据设备与log设备是分开的
数据/log的空间都没有满,而这消息讲segment满了,
dump the transaction log 我认为不能从根本上解决问题,
ALTER DATABASE 也不过把数据库加大而我现在至少有200M空间,
sp_entemsegment我没用过应该差不多
请问怎么才能解决这个问题? 还有syslogs的空间是由谁来分配且怎么分配?