欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-16 14:02:22
复制代码 代码如下: sp_configure 'allow updates','1' go reconfigure with override go update sys...
复制代码 代码如下:

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

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

上一篇:

下一篇: