T-sql删除所有视图
作者:本站编辑
发布时间:2014-11-21
来源:本站原创
点击数:
脚本:
declare @sql varchar(8000)
set @sql=''
select @sql=@sql+ ', '+name from sysobjects
where type= 'V ' and name not in( 'syssegments ', 'sysconstraints ')
set @sql= 'drop view '+stuff(@sql, 1, 1, ' ')
exec(@sql)