- 论坛徽章:
- 0
|
还是这样做好呢?
1> select dbid,lstart,vstart,size from sysusages where dbid=db_id('sybsystemdb')
2> go
dbid lstart vstart size
------ ----------- ----------- -----------
31513 0 10244 1024
31513 1024 33554434 523008
(2 rows affected)
use master
go
sp_configure 'allow updates',1
go
begin transaction
go
update sysusages set segmap=7 where dbid=db_id('sybsystemdb') and lstart=1024
go
delete sysusages where dbid=db_id('sybsystemdb') and lstart!=1024
go
commit transaction
go
sp_configure 'allow updates',0
go
checkpoint
go
重新启动
[ 本帖最后由 chmod 于 2006-8-26 20:14 编辑 ] |
|