select 'update index statistics ' || o.name from sysobjects o, sysusers u where o.name like 't%' and o.type='U' and o.uid = u.uid and u.name = 'mdmsdbo'
如果现场建索引比较慢的话,用dbvisual连接数据库,运行这个语句,把结果复制下来,再运行一次,这样可以加快索引的创建。
注意,'update index statistics ' 这里面有个空格.