• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • SQL Server兩種修改對象所有者的方法

    發表于:2007-04-22來源:作者:點擊數: 標簽:sql修改兩種nbsp對象
    一般開發, SQL Server的 數據庫 所有者為dbo.但是為了 安全 ,有時候可能把它換成其它的名稱. 所有者變換不是很方便.這里列出兩種供參考 第一種 ---****************** 更改權限以添加HHRC用戶 ************************* -- step1 添加第三方用戶,如 " chn

    一般開發,SQL Server的數據庫所有者為dbo.但是為了安全,有時候可能把它換成其它的名稱.

      所有者變換不是很方便.這里列出兩種供參考

      第一種

    ---******************更改權限以添加HHRC用戶************************* --step1 添加第三方用戶,如"chn" --step2 運行sql,加對象權限移至第三方用戶 --step3 添加hhrc用戶 --step4 運行sql,將對象權限移至hhrc用戶 declare @tblname varchar(30) declare @tblown varchar(50) declare tbl_cur cursor for select name from sysobjects where uid='5' and status>=0 and xtype in ('U','P') --select * from sysusers open tbl_cur fetch next from tbl_cur into @tblname while @@fetch_status=0 begin set @tblown='web56433.'+@tblname EXEC sp_changeobjectowner @tblown, 'chn' print @tblname fetch next from tbl_cur into @tblname end close tbl_cur deallocate tbl_cur

      第二種

    --手動修改系統表 --設備可以手動修改表 exec sp_configure 'allow updates',1 RECONFIGURE WITH OVERRIDE --更改對象所有者 update sysobjects set uid = 1 where uid = 5 update sysobjects set uid = 5 where uid = 1 AND xtype != 'S' update sysobjects set uid = 1 where name = 'syssegments' update sysobjects set uid = 1 where name = 'sysconstraints' exec sp_configure 'allow updates',0 RECONFIGURE WITH OVERRIDE

    原文轉自:http://www.kjueaiud.com

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>