当前位置:  数据库>sqlserver

游标删除多个表里脏数据的方法

    来源: 互联网  发布时间:2014-10-10

    本文导语:  第一种方法: 代码如下: CREATE proc [dbo].[delAllRecord]asdeclare @tableName nvarchar(255)declare @Sql nvarchar(255) Declare curTable Cursor        for select Table_Name from information_schema.tables where TABLE_TYPE='BASE TABLE'Open curTableFetch Next From curTable Into @tableNa...

第一种方法:

代码如下:

CREATE proc [dbo].[delAllRecord]
as
declare @tableName nvarchar(255)
declare @Sql nvarchar(255)

Declare curTable Cursor
        for select Table_Name from information_schema.tables where TABLE_TYPE='BASE TABLE'
Open curTable
Fetch Next From curTable Into @tableName

WHILE(@@FETCH_STATUS = 0)
        BEGIN
                set @Sql = N'delete from '+@tableName
                exec sp_executesql @sql
                Fetch Next From curTable Into @tableName
        end
CLOSE curTable
DEALLOCATE curTable


第二种方法:

代码如下:


--declare test_cursor cursor scroll for

--select id,table_name from dbo.section_type

--open test_cursor

--declare @id int

--declare @table_name nvarchar(50)

--while @@fetch_status=0

--begin

--fetch next from test_cursor into @id,@table_name

--print @id

--print @table_name

--end

--close test_cursor

--deallocate test_cursor

 

--删除projectrangtree的脏数据

delete from projectrangtree where deleteversion>0

delete from projectrangtree where type=3 and parentid not in(select id from projectrangtree where type=2)

delete from projectrangtree where type=4 and parentid not in(select id from projectrangtree where type=3)

delete from projectrangtree where type=5 and parentid not in(select id from projectrangtree where type=4)

 

--删除section_settings的脏数据

delete from section_settings where parent_prj_tree_id not in(select id from projectrangtree)

 

--删除各个表里的测点

declare @table_name varchar(50)

declare @sql nvarchar(500)--此处要注意,声明的长度一定要够

--declare @measuring_point_id nvarchar(500)

declare del_cursor cursor scroll for

select table_name from section_type

open del_cursor

fetch next from del_cursor into @table_name

--print @table_name

while (@@fetch_status=0)

begin

--print quotename(@table_name)

--set @measuring_point_id='select measuring_point_id from '+quotename(@table_name)

--exec sp_executesql @measuring_point_id

set @sql = 'delete from '+ quotename(@table_name) +' where measuring_point_id not in(select id from measuring_point_setting)'            

exec sp_executesql @sql

--delete from @table_name where measuring_point_id not in (select id from measuring_point_setting)

fetch next from del_cursor into @table_name

end

close del_cursor

deallocate del_cursor
 

--delete from (select talbe_name from section_type) where measuring_point_id not in (select id from measuring_point_setting)


    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • sqlserver游标用法 创建游标与关闭游标
  • sqlserver游标使用步骤示例(创建游标 关闭游标)
  • sql 游标的使用—游标FOR循环小例子
  • mysql动态游标学习(mysql存储过程游标)
  • MS SQL Server游标(CURSOR)的学习使用
  • sql游标的用法简单笔记
  • oracle的最大游标数问题
  • 教你怎么使用sql游标实例分享
  • Jbuilder 4中游标的问题
  • 关于打开的游标超出最大数问题
  • 怎样在jdbc中使用游标???
  • 紧急!!!选择语句中得到的记录集,为什么游标只能向下,而不能向上。?
  • sqlserver触发器与游标的例子
  • sqlserver中触发器+游标操作实现
  • MySql游标的使用实例
  • 怎么删除文件中的当前游标所在的行
  • Oracle事务!使用游标提交过程
  • 超出打开游标的最大数是怎么回事?
  • SQL Server 游标语句使用示例
  • SQL Server 游标语句 声明/打开/循环实例


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3