您的位置:首页 > 移动开发 > Objective-C

Sybase ASE:Can't allocate space for object in database 'tempdb' because 'default' segment is full

2015-07-27 16:51 1041 查看
一、 问题:

Msg 1105, Level 17, State 16:

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

二、解决办法

1、 disk resize name = "tempdbdev", size = "5120M"

// Dynamically increases the size of the device

// Or you canCreates a device named “user_disk” by
// disk init name = "user_disk", physname = "/usr/u/sybase/data/userfile1.dat", size = 5120

2、alter database tempdb log on tempdbdev = 5120

3、alter database tempdb on tempdbdev ='5120M' WITH OVERRIDE

三、扩展阅读

也可以在安装时候,或者之后作Automatic Database Expansion, 参阅如下文档:

Configuring Automatic Database Space Expansion in SAP Adaptive Server Enterprise
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: