sqlserver中更改数据库所属为dbo的方法

sqlserver中更改数据库所属为dbo的方法,需要的朋友可以参考下。

代码如下:
sp_configure ‘allow updates’,’1′
go
reconfigure with override
go
update sysobjects set uid=1 where uid1
go
sp_configure ‘allow updates’,’0′
go
reconfigure with override

在查询分析器里面执行一次就行,执行第二次会报错

© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享