- 积分
- 19754
- 经验
- 1998 点
- 热情
- 1987 点
- 魅力
- 145 点
- 信誉
- 1406 度
- 金币
- 2571 枚
- 钻石
- 41 颗
- 蓝光币
- 10 ¥
Forum CEO
- 金币
- 2571 枚
- 体力
- 12349 点
|
打开企业管理器->工具->SQL 查询分析器
执行以下SQL就可以批量更改mssql表用户为系统默认用户了- declare tb cursor local for
- select 'sp_changeobjectowner ''['+replace(user_name(uid),']',']]')+'].['
- +replace(name,']',']]')+']'',''dbo'''
- from sysobjects
- where xtype in('U','V','P','TR','FN','IF','TF') and status>=0
- open tb
- declare @s nvarchar(4000)
- fetch tb into @s
- while @@fetch_status=0
- begin
- exec(@s)
- fetch tb into @s
- end
- close tb
- deallocate tb
- go
复制代码 |
|