update syscolumns set name = lower(name) where id =
(select id from sysobjects where xtype='u' and name='Web_DispAssets')
update sysobjects set name=lower(name) where name='Web_DispAssets'
select * from sysobjects where xtype='u'
执行脚本时箬出错的:
未启用对系统目录的特殊更新。系统管理员必须重新配置 SQL Server 以允许这种操作
解决方案:
打开mssql server 属性---》服务器选项----》启用对系统目录的特殊更新(允许对系统目录进行直接修改) 即可