博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
存储过程—导出table数据为inser sqlt语句
阅读量:5916 次
发布时间:2019-06-19

本文共 3894 字,大约阅读时间需要 12 分钟。

Sql Server Management Studio没有将table中数据导出为insert语句的功能。

下面一个很有用的存储过程,可以把某张表的数据导出为insert sql语句。

当然Oracle、Mysql客户端貌似都已经集成了这项功能。所以本文仅适用于Sql Server Management Studio.

USE [testdb]GO/****** Object:  StoredProcedure [dbo].[proc_insert]    Script Date: 09/30/2013 12:07:00 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER proc [dbo].[proc_insert] (@tablename varchar(256))asbegin    set nocount on    declare @sqlstr varchar(4000)    declare @sqlstr1 varchar(4000)    declare @sqlstr2 varchar(4000)    select @sqlstr='select ''insert '+@tablename    select @sqlstr1=''    select @sqlstr2=' ('    select @sqlstr1= ' values ( ''+'    select @sqlstr1=@sqlstr1+col+'+'',''+' ,@sqlstr2=@sqlstr2+name +',' from (select case     -- when a.xtype =173 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.length*2+2)+'),'+a.name +')'+' end'    when a.xtype =127 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(20),'+a.name +')'+' end'    when a.xtype =104 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(1),'+a.name +')'+' end'    when a.xtype =175 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'    when a.xtype =61 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'convert(varchar(23),'+a.name +',121)'+ '+'''''''''+' end'    when a.xtype =106 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.xprec+2)+'),'+a.name +')'+' end'    when a.xtype =62 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(23),'+a.name +',2)'+' end'    when a.xtype =56 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(11),'+a.name +')'+' end'    when a.xtype =60 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(22),'+a.name +')'+' end'    when a.xtype =239 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'    when a.xtype =108 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.xprec+2)+'),'+a.name +')'+' end'    when a.xtype =231 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'    when a.xtype =59 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(23),'+a.name +',2)'+' end'    when a.xtype =58 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'convert(varchar(23),'+a.name +',121)'+ '+'''''''''+' end'    when a.xtype =52 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(12),'+a.name +')'+' end'    when a.xtype =122 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(22),'+a.name +')'+' end'    when a.xtype =48 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(6),'+a.name +')'+' end'    -- when a.xtype =165 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.length*2+2)+'),'+a.name +')'+' end'    when a.xtype =167 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'    else '''NULL'''    end as col,a.colid,a.name    from syscolumns a where a.id = object_id(@tablename) and a.xtype <>189 and a.xtype <>34 and a.xtype <>35 and a.xtype <>36    )t order by colid    select @sqlstr=@sqlstr+left(@sqlstr2,len(@sqlstr2)-1)+') '+left(@sqlstr1,len(@sqlstr1)-3)+')'' from '+@tablename    -- print @sqlstr    --select * from systypes    exec( @sqlstr)    set nocount offend

执行:

USE [testdb]GODECLARE    @return_value intEXEC    @return_value = [dbo].[proc_insert]        @tablename = N'Report'SELECT    'Return Value' = @return_valueGO

注意,执行模式选择【以文本格式显示结果】就可以了。

 

转载地址:http://qdgpx.baihongyu.com/

你可能感兴趣的文章
老鸟的Python新手教程
查看>>
关于前端开发的20篇文档与指南
查看>>
程序员保持快乐活跃的6个好习惯(转)
查看>>
【转】linux /usr/bin/ld cannot find 解决
查看>>
T-SQL技术收集——删除重复数据
查看>>
文件路径 封装常用代码
查看>>
如何:在 DHTML 代码和客户端应用程序代码之间实现双向通信
查看>>
hadoop的两大核心之一:HDFS总结
查看>>
Android OpenGL ES(六)创建实例应用OpenGLDemos程序框架 .
查看>>
IOS调试—断点调试以及动态输出
查看>>
两列左侧自适应布局--(来自网易)
查看>>
百度谷歌离线地图解决方案(离线地图下载)
查看>>
QT1.1-与Opencv的hello world
查看>>
[译] libvirt 虚机的生命周期 (Libvirt Virtual Machine Lifecycle)
查看>>
android 遇到问题未处理
查看>>
SQL中各数据类型的长度、精度
查看>>
An AnnotationConfiguration instance is required to use
查看>>
Java凝视Override、Deprecated、SuppressWarnings具体解释
查看>>
移动web开发(四)——X-UA-Compatible
查看>>
小希的迷宫(并差集)
查看>>