首页 > 数据库 > SQL Server > 正文

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

2024-08-31 00:58:34
字体:
来源:转载
供稿:网友

复制代码 代码如下:


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


在查询分析器里面执行一次就行,执行第二次会报错
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表