刪除指定表的所有索引,包括主鍵索引,唯一索引和普通索引 ,適用於sql server 2005,

來源:互聯網
上載者:User

標籤:des   blog   http   io   ar   os   sp   div   on   

原文:刪除指定表的所有索引,包括主鍵索引,唯一索引和普通索引 ,適用於sql server 2005,

--刪除指定表中所有索引--用法:declare @tableName varchar(100) --set @tableName=‘表名‘ --表名 ,根據實際情況替換--exec sp_dropindex @tableNameif exists(select 1 from sysobjects where id = object_id(‘dropindex‘) and xtype = ‘P‘) drop procedure dropindex gocreate procedure dropindex @tableName varchar(100)=null --表名asif @tableName is null begin  raiserror(‘必須提供@tableName參數‘,12,1)  return endcreate table # (  id int identity,  index_name varchar(50),  index_description varchar(1000),  index_keys varchar(100) )insert #(index_name,index_description,index_keys) exec sp_helpindex @tableNamedeclare @i intdeclare @sql varchar(100) set @i = 1while @i<=(select max(id) from #) begin  if exists(select 1 from sysobjects A join # B on A.name=B.index_name where [email protected] and A.xtype in (‘PK‘,‘UQ‘))  begin   select @sql = ‘alter table ‘+ @tableName +‘ drop constraint ‘ + (select index_name from # where id = @i)  end  else  begin   select @sql = ‘drop index ‘+ @tableName + ‘.‘ + (select index_name from # where [email protected])  end  -- print(@sql)     exec(@sql)  set @[email protected]+1 enddrop table #go

 

先執行上面的SQL語句,然後再執行此預存程序即可

 

--刪除索引declare @tableName varchar(100) set @tableName=‘table‘ --表名 ,根據實際情況替換exec dropindex @tableNameGO

 

刪除指定表的所有索引,包括主鍵索引,唯一索引和普通索引 ,適用於sql server 2005,

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.