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

复制代码 代码如下:

sp_configure ‘allow updates’,’1′
go
reconfigure with override
go
update sysobjects set uid=1 where uid<>1
go
sp_configure ‘allow updates’,’0′
go
reconfigure with override


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

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/233919.html

(0)
上一篇 2022年1月23日
下一篇 2022年1月23日

相关推荐

发表回复

登录后才能评论