logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

(转)SQL Server 2005索引碎片整理脚本

[code="sql"]set nocount on--使用游标重新组织指定库中的索引,消除索引碎片--R_T层游标取出当前数据库所有表declare R_T cursorfor select name from sys.tablesdeclare @T varchar(50)open r_tfetch next from r_t into @twhile @@f...

#.net#Blog
到底了