码迷,mamicode.com
首页 > 其他好文 > 详细

重建所有表索引

时间:2016-05-16 12:47:55      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

USE My_Database;
DECLARE @name varchar(100) 

DECLARE authors_cursor CURSOR FOR  
Select [name]   from sysobjects where xtype=‘u‘ order by id 

OPEN authors_cursor 

FETCH NEXT FROM authors_cursor  INTO @name 

WHILE @@FETCH_STATUS = 0 
BEGIN     

   DBCC DBREINDEX (@name, ‘‘, 90) 

   FETCH NEXT FROM authors_cursor  
   INTO @name 
END 

deallocate authors_cursor

重建所有表索引

标签:

原文地址:http://www.cnblogs.com/wwl188/p/5497543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!