江西广告网

标题: 如何把用户定义的数据类型的ower改为dbo [打印本页]

作者: 蓝信子    时间: 2008-12-24 11:59
标题: 如何把用户定义的数据类型的ower改为dbo
  方法1.先删除,再重新建立   if exists (select * from dbo.systypes where name = N'dt_ac_area')   exec sp_droptype N'ssn'   GO   setuser --默认是DBO   GO   EXEC sp_addtypeN'dt_ac_area', N'char (3)', N'not null'   GO      方法2.直接通过数据库全部山删除SRX的 User Defined Data Types:   USE master   go   EXEC sp_configure 'allow updates', '1'   go   RECONFIGURE WITH OVERRIDE   go   use t --database name   go   begin transaction   delete systypes where uid=user_id('srx')   if @@rowcount0   commit transaction   else   rollback transaction   go   use master   go   EXEC sp_configure 'allow updates', '1'   go   RECONFIGURE WITH OVERRIDE   go      还忘记一点,如果你不想删除,你可以用第二种方法直接更新为DBO:      USE master   go   EXEC sp_configure 'allow updates', '1'   go   RECONFIGURE WITH OVERRIDE   go   use t --database name   go   begin transaction   UPDATE systypes SET UID=1 where uid=user_id('srx') --直接更新   if @@rowcount0   commit transaction   else   rollback transaction   go   use master   go   EXEC sp_configure 'allow updates', '1'   go   RECONFIGURE WITH OVERRIDE   go             <




欢迎光临 江西广告网 (http://bbs.jxadw.com/) Powered by Discuz! X3.2