重建数据库所有表的索引

本文由  于 2021-1-29 16:55 发布在  SQL    

建议在业务空闲的时间,进行索引重建工作;

declare @sql varchar(max)
set @sql=''
select @sql=@sql+'dbcc dbreindex('+name+');' from sys.tables where name not like 'tm%'
print @sql
exec(@sql)

最新评论
网站管理  |  赵猛的个人主页  |  手机版  |  RSS  |  留言建议  |  关于本站  |  联系方式

All Rights Reserved. Powered by emlog Themes by 大智若愚
网站备案号:苏ICP备15011688号-1