一定要改的话,注意在每人使用的时候操作USE master
EXEC sp_configure 'allow updates', '1'
RECONFIGURE WITH OVERRIDE
use ygbackupupdate c
set name=upper(left(c.name,1))+lower(stuff(c.name,1,1,'')) 
from syscolumns c,sysobjects o
where c.id=o.id
and o.type='u'USE master
EXEC sp_configure 'allow updates', '0'
RECONFIGURE WITH OVERRIDE