首页 > 开发 > 综合 > 正文

实用SQL: 通过向表加clusted索引重整数据库

2024-07-21 02:07:31
字体:
来源:转载
供稿:网友
,欢迎访问网页设计爱好者web开发。
--
--   arrangedb.sql 重整数据库
--
--   copyrights @2003.12.29 digital china management system co., ltd.
--
-- 重整流程:把所有用户表增加 clustered 索引,这样sql server会重整表,然后
-- 再删除索引
--
-- 使用时机:日常维护,建议每周做一次重整。
--
-- 注意事项:做完后请做数据库收缩,更新统计,重新索引,及完整性检查 

--drop table #dcms_index_info
--要用到的临时表
create table #dcms_index_info
(
  index_name sysname,
  index_description varchar(210),
  index_keys varchar(2078)
)

--设置环境
set nocount on
--程序开始:变量
declare @sql varchar(500)
declare @tablename varchar(20)
declare @errorsave int

--用所有的用户表处理
declare cursor1 cursor
for
 select name from sysobjects where xtype='u' order by name

open cursor1
fetch next from cursor1 into @tablename

while @@fetch_status = 0
begin
 --为了检测表中是不是有create_date这个列,易飞的表中都有,如果没有就跳过,不过处理
 --应该还有更好的方法,我暂时这样用了。不想用sp_columns因为不想建表,慢就慢点吧
 if columnproperty(object_id(@tablename),'create_date','precision') is not null
 begin
  print 'process table ' + @tablename

  --取得当前表的索引信息
  delete #dcms_index_info
  set @sql = ' sp_helpindex ''' + @tablename + ''' '
  insert into #dcms_index_info exec (@sql)

  --查找是不是已经有聚簇索引(clustered),如果已经有了就不做,在易飞中有clustered索引是少数
  select index_name from #dcms_index_info where index_description like 'clustered%'

  if @@rowcount = 0
  begin
   set @sql = ' create clustered index dctempindex001 on ' + @tablename + ' ( create_date ) '
   exec (@sql)

   set @sql = ' drop index ' + @tablename + '.dctempindex001 '
   exec (@sql)
  end
 end

 fetch next from cursor1 into @tablename
end
 
drop table #dcms_index_info
close cursor1
deallocate cursor1

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表