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

前端之家收集整理的这篇文章主要介绍了sqlserver中更改数据库所属为dbo的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="37614" class="copybut" id="copybut37614" onclick="doCopy('code37614')"> 代码如下:

<div class="codebody" id="code37614">
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

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

原文链接:https://www.f2er.com/mssql/64052.html

猜你在找的MsSQL相关文章