sqlserver任务导出Excle

--sql语句就用下面的存储过程
 
/*--数据导出Excel
 
导出查询中的数据到Excel,包含字段名,文件为真正的Excel文件
,如果文件不存在,将自动创建文件
,如果表不存在,将自动创建表
基于通用性考虑,仅支持导出标准数据类型

使用方法:

直接复制执行创建储存过程
--陈润程 2014.04--*/
 
/*--调用示例
 
p_exporttb @sqlstr=‘select * from 表名‘,@path=‘c:\‘,@fname=‘aa.xls‘,@sheetname=‘sheet1‘
--*/
if exists (select * from dbo.sysobjects where id = object_id(N‘[dbo].[p_exporttb]‘) and OBJECTPROPERTY(id, N‘IsProcedure‘) = 1)
drop procedure [dbo].[p_exporttb]
GO
create proc p_exporttb
    @sqlstr sysname,                      --查询语句,如果查询语句中使用了order by ,请加上top 100 percent
    @path nvarchar(1000),                 --文件存放目录
    @fname nvarchar(250),                 --文件名
    @sheetname varchar(250)=‘‘            --要创建的工作表名,默认为文件名
as
declare @err int,@src nvarchar(255),@desc nvarchar(255),@out int
declare @obj int,@constr nvarchar(1000),@sql varchar(8000),@fdlist varchar(8000)
 
--参数检测
if isnull(@fname,‘‘)=‘‘ set @fname=‘temp.xls‘
if isnull(@sheetname,‘‘)=‘‘ set @sheetname=replace(@fname,‘.‘,‘#‘)
 
--检查文件是否已经存在
if right(@path,1)<>‘\‘ set @[email protected]+‘\‘
create table #tb(a bit,b bit,c bit)
set @[email protected][email protected]
insert into #tb exec master..xp_fileexist @sql
 
--数据库创建语句
set @[email protected][email protected]
if exists(select 1 from #tb where a=1)
set @constr=‘DRIVER={Microsoft Excel Driver (*.xls)};DSN=‘‘‘‘;READONLY=FALSE‘
    +‘;CREATE_DB="‘[email protected]+‘";DBQ=‘[email protected]
else
set @constr=‘Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties="Excel 5.0;HDR=YES‘
+‘;DATABASE=‘[email protected]+‘"‘
 
--连接数据库
exec @err=sp_oacreate ‘adodb.connection‘,@obj out
if @err<>0 goto lberr
 
exec @err=sp_oamethod @obj,‘open‘,null,@constr
if @err<>0 goto lberr
 
--创建表的SQL
declare @tbname sysname
set @tbname=‘##tmp_‘+convert(varchar(38),newid())
set @sql=‘select * into [‘[email protected]+‘] from(‘[email protected]+‘) a‘
exec(@sql)
 
select @sql=‘‘,@fdlist=‘‘
select @[email protected]+‘,‘+a.name
,@[email protected]+‘,[‘+a.name+‘] ‘
+case when b.name in(‘char‘,‘nchar‘,‘varchar‘,‘nvarchar‘) then
‘text(‘+cast(case when a.length>255 then 255 else a.length end as varchar)+‘)‘
when b.name in(‘tynyint‘,‘int‘,‘bigint‘,‘tinyint‘) then ‘int‘
when b.name in(‘smalldatetime‘,‘datetime‘) then ‘datetime‘
when b.name in(‘money‘,‘smallmoney‘) then ‘money‘
else b.name end
FROM tempdb..syscolumns a left join tempdb..systypes b on a.xtype=b.xusertype
where b.name not in(‘image‘,‘text‘,‘uniqueidentifier‘,‘sql_variant‘,‘ntext‘,‘varbinary‘,‘binary‘,‘timestamp‘)
and a.id=(select id from tempdb..sysobjects where [email protected])
select @sql=‘create table [‘[email protected]
+‘](‘+substring(@sql,2,8000)+‘)‘
,@fdlist=substring(@fdlist,2,8000)
 
exec @err=sp_oamethod @obj,‘execute‘,@out out,@sql
if @err<>0 goto lberr
 
exec @err=sp_oadestroy @obj
 
--导入数据
set @sql=‘openrowset(‘‘MICROSOFT.JET.OLEDB.4.0‘‘,‘‘Excel 5.0;HDR=YES
;DATABASE=‘[email protected][email protected]+‘‘‘,[‘[email protected]+‘$])‘
 
exec(‘insert into ‘[email protected]+‘(‘[email protected]+‘) select ‘[email protected]+‘ from [‘[email protected]+‘]‘)
 
set @sql=‘drop table [‘[email protected]+‘]‘
exec(@sql)
return
 
lberr:
exec sp_oageterrorinfo 0,@src out,@desc out
lbexit:
select cast(@err as varbinary(4)) as 错误号
,@src as 错误源,@desc as 错误描述
select @sql,@constr,@fdlist

时间: 2024-11-06 13:16:01

sqlserver任务导出Excle的相关文章

WEB使用NPOI导出Excle

1.到官网下载NPOI组件 http://npoi.codeplex.com/releases 2.在使用中的实例 1 using System; 2 using System.Collections.Generic; 3 using System.Data; 4 using System.Diagnostics; 5 using System.Drawing; 6 using System.IO; 7 using System.Linq; 8 using System.Web; 9 using

React+后端实现导出Excle表格的功能

最近在做一个基于React+antd前端框架的Excel导出功能,我主要在后端做了处理,这个功能完成后,便总结成一篇技术分享文章,感兴趣的小伙伴可以参考该分享来做导出excle表格功能,以下步骤同样适用于vue框架,或者JSP页面的实现. 在做这类导出文件的功能,其实,在后端进行处理,会更容易些,虽然前端也可以进行处理,但还是建议后端来做,因为很多导出工具类基本都是很好用. 根据以下步骤,可以很容易就实现导出Excel表格数据的功能. 1.导出图标 按钮代码: 1 <Button type=&quo

php 导出excle的.csv格式的数据时乱码问题

1.header('Content-Encoding: XXXX'); 有可能是编码问题:可以尝试UTF-8,GBK,GB2312,等编码格式 2.有可能是文件编码问题,虽然UTF-8不建议带BOM,但是导出的excle是微软的产品,所以需要把文件格式改成,UTF-8有BOM格式的.

JAVA操作Excle之Poi(二)批量导出Excle数据

批量导入: 界面JS:导出当前数据带参数 function exportStudent(){ $.messager.confirm('确认对话框', '确认要导出当前所有数据吗?', function(r){ if (r){ var name=$("#nameLike").val(); var i=$('#sc').combobox("getValue"); var sex=$("#sexLike").combobox("getValu

NOPI 导出Excle

using System; using System.Data; using System.IO; using System.Text; using System.Web; using NPOI.HPSF; using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; public class ExcelHelper { /// <summary> /// DataTable导出到Excel文件 /// </summary> /// <

jfinal 导出excle

Controller Map<String,List<PoiUtilHeader>> result = new HashMap<String, List<PoiUtilHeader>>(); List<PoiUtilHeader> row0 = new ArrayList<PoiUtilHeader>(); row0.add(new PoiUtilHeader(0,"id",1,false)); row0.add(

MVC导出Excle

Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.Application ();                app.Workbooks.Add(); Microsoft.Office.Interop.Excel.Worksheet sheet = app.ActiveSheet;                sheet.Cells[5, "B"] = "

怎么从sqlserver 数据库导出 insert 的数据语句

In SSMS in the Object Explorer, right click on the database right-click and pick "Tasks" and then "Generate Scripts". This will allow you to generate scripts for a single or all tables, and one of the options is "Script Data"

sqlserver导入导出数据库结构及创建用户分配权限

1.创建用户分配权限 https://www.cnblogs.com/jennyjiang-00/p/5803140.html 2.sqlserver2008导出表结构和表数据 导出表结构   https://blog.csdn.net/luming666/article/details/78541938 3.导入表结构及数据 右键新建数据库->然后新建查询->然后执行sql语句(导出表结构生成的*.sql文件中的语句). 原文地址:https://www.cnblogs.com/yaok43