摘要: --视图declare @sql varchar(8000)set @sql= ''select @sql=@sql+ ', '+name from sysobjectswhere type= 'V ' and name not in( 'syssegments ', 'sysconstraints ')set @sql= 'drop view '+stuff(@sql, 1, 1, ' ')exec(@sql)Go--删除存储过程DECLARE @STRING VARCHAR(80 阅读全文
posted @ 2011-04-11 20:08 HTL 阅读(370) 评论(0) 推荐(0)
htl