网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计资源 > 数据库 > 正文

一次删除所有表及存储过程的SQL语句

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

一次删除所有表SQL语句如下:

  1. declare @tname varchar(8000)  
  2. set @tname='' 
  3. select @tname=@tname + Name + ',' from sysobjects where xtype='U' 
  4. select @tname='drop table ' + left(@tname,len(@tname)-1)  
  5. exec(@tname) 

删除所有存储过程的sql语句

  1. declare @procName varchar(500)  
  2.  
  3.      declare cur cursor 
  4.  
  5.            for select [namefrom sys.objects where type = 'p' 
  6.  
  7.      open cur   
  8.  
  9.      fetch next from cur into @procName  
  10.  
  11.      while @@fetch_status = 0  
  12.  
  13.      begin 
  14.  
  15.            if @procName <> 'DeleteAllProcedures' 
  16.  
  17.                  exec('drop procedure ' + @procName)  
  18.  
  19.                  fetch next from cur into @procName  
  20.  
  21.      end 
  22.  
  23.      close cur  
  24.  
  25.      deallocate cur  
  • 下一篇资讯: Sqlserver分页的总结
  • 设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
    版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师