当前位置 : 主页 > 数据库 > mssql >

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

来源:互联网 收集:自由互联 发布时间:2021-04-05
复制代码 代码如下: 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 在查询分析器里面执行一次就行,执
复制代码 代码如下:
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

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