如何使用一个命令删除 SQL 数据库中的所有索引? [英] How can I drop all indexes in a SQL database with one command?

查看:36
本文介绍了如何使用一个命令删除 SQL 数据库中的所有索引?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

那么,如何使用一个命令删除 SQL 数据库中的所有索引?我有这个命令可以获取所有 20 个左右的 drop 语句,但是如何从这个结果集"运行所有这些 drop 语句?

So, how can I drop all indexes in a SQL database with one command? I have this command that will get me all the 20 or so drop statements, but how can I run all of those drop statements from this "result set"?

select * from vw_drop_idnex;

另一个给我相同列表的变体是:

Another variation that gives me the same list is:

SELECT  'DROP INDEX ' + ix.Name + ' ON ' + OBJECT_NAME(ID)  AS QUERYLIST
FROM  sysindexes ix
WHERE   ix.Name IS NOT null and ix.Name like '%pre_%'

我尝试执行exec(select cmd from vw_drop_idnex)",但没有成功.我正在寻找像 for 循环一样工作的东西,并逐个运行查询.

I tried to do "exec(select cmd from vw_drop_idnex)" and it didn't work. I am looking for something that works like a for loop and runs the queries one by one.

在 Rob Farleys 的帮助下,剧本的最终草稿是:

With Rob Farleys help, final draft of the script is:

declare @ltr nvarchar(1024);
SELECT @ltr = ( select 'alter table '+o.name+' drop constraint '+i.name+';'
  from sys.indexes i join sys.objects o on  i.object_id=o.object_id
  where o.type<>'S' and is_primary_key=1
  FOR xml path('') );
exec sp_executesql @ltr;

declare @qry nvarchar(1024);
select @qry = (select 'drop index '+o.name+'.'+i.name+';'
  from sys.indexes i join sys.objects o on  i.object_id=o.object_id
  where o.type<>'S' and is_primary_key<>1 and index_id>0
for xml path(''));
exec sp_executesql @qry

推荐答案

你们很亲近.

declare @qry nvarchar(max);
select @qry = 
(SELECT  'DROP INDEX [' + ix.name + '] ON ' + OBJECT_NAME(ID) + '; '
FROM  sysindexes ix
WHERE   ix.Name IS NOT null and ix.Name like '%prefix_%'
for xml path(''));
exec sp_executesql @qry

这篇关于如何使用一个命令删除 SQL 数据库中的所有索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆