sql server 带列名导出至excel

作者:佚名 来源:sudu.cn 时间:2008-11-25 11:07:00 


--sql语句就用下面的存储过程
/*--数据导出Excel

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

/*--调用示例

p_exporttb @sqlstr=’select * from 地区资料’
,@path=’c:\’,@fname=’aa.xls’,@sheetname=’地区资料’
--*/
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)<>&rsquo;\&rsquo; set @path=@path+&rsquo;\&rsquo;
create table #tb(a bit,b bit,c bit)
set @sql=@path+@fname
insert into #tb exec master..xp_fileexist @sql

--数据库创建语句
set @sql=@path+@fname
if exists(select 1 from #tb where a=1)
set @constr=&rsquo;DRIVER={Microsoft Excel Driver (*.xls)};DSN=&rsquo;&rsquo;&rsquo;&rsquo;;READONLY=FALSE&rsquo;
    +&rsquo;;CREATE_DB="&rsquo;+@sql+&rsquo;";DBQ=&rsquo;+@sql
else
set @constr=&rsquo;Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties="Excel 5.0;HDR=YES&rsquo;
+&rsquo;;DATABASE=&rsquo;+@sql+&rsquo;"&rsquo;

--连接数据库
exec @err=sp_oacreate &rsquo;adodb.connection&rsquo;,@obj out
if @err<>0 goto lberr

exec @err=sp_oamethod @obj,&rsquo;open&rsquo;,null,@constr
if @err<>0 goto lberr

--创建表的SQL
declare @tbname sysname
set @tbname=&rsquo;##tmp_&rsquo;+convert(varchar(38),newid())
set @sql=&rsquo;select * into [&rsquo;+@tbname+&rsquo;] from(&rsquo;+@sqlstr+&rsquo;) a&rsquo;
exec(@sql)

select @sql=&rsquo;&rsquo;,@fdlist=&rsquo;&rsquo;
select @fdlist=@fdlist+&rsquo;,&rsquo;+a.name
,@sql=@sql+&rsquo;,[&rsquo;+a.name+&rsquo;] &rsquo;
+case when b.name in(&rsquo;char&rsquo;,&rsquo;nchar&rsquo;,&rsquo;varchar&rsquo;,&rsquo;nvarchar&rsquo;) then
&rsquo;text(&rsquo;+cast(case when a.length>255 then 255 else a.length end as varchar)+&rsquo;)&rsquo;
when b.name in(&rsquo;tynyint&rsquo;,&rsquo;int&rsquo;,&rsquo;bigint&rsquo;,&rsquo;tinyint&rsquo;) then &rsquo;int&rsquo;
when b.name in(&rsquo;smalldatetime&rsquo;,&rsquo;datetime&rsquo;) then &rsquo;datetime&rsquo;
when b.name in(&rsquo;money&rsquo;,&rsquo;smallmoney&rsquo;) then &rsquo;money&rsquo;
else b.name end
FROM tempdb..syscolumns a left join tempdb..systypes b on a.xtype=b.xusertype
where b.name not in(&rsquo;image&rsquo;,&rsquo;text&rsquo;,&rsquo;uniqueidentifier&rsquo;,&rsquo;sql_variant&rsquo;,&rsquo;ntext&rsquo;,&rsquo;varbinary&rsquo;,&rsquo;binary&rsquo;,&rsquo;timestamp&rsquo;)
and a.id=(select id from tempdb..sysobjects where name=@tbname)
select @sql=&rsquo;create table [&rsquo;+@sheetname
+&rsquo;](&rsquo;+substring(@sql,2,8000)+&rsquo;)&rsquo;
,@fdlist=substring(@fdlist,2,8000)

exec @err=sp_oamethod @obj,&rsquo;execute&rsquo;,@out out,@sql
if @err<>0 goto lberr

exec @err=sp_oadestroy @obj

--导入数据
set @sql=&rsquo;openrowset(&rsquo;&rsquo;MICROSOFT.JET.OLEDB.4.0&rsquo;&rsquo;,&rsquo;&rsquo;Excel 5.0;HDR=YES
;DATABASE=&rsquo;+@path+@fname+&rsquo;&rsquo;&rsquo;,[&rsquo;+@sheetname+&rsquo;$])&rsquo;

exec(&rsquo;insert into &rsquo;+@sql+&rsquo;(&rsquo;+@fdlist+&rsquo;) select &rsquo;+@fdlist+&rsquo; from [&rsquo;+@tbname+&rsquo;]&rsquo;)

set @sql=&rsquo;drop table [&rsquo;+@tbname+&rsquo;]&rsquo;
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

标签:
0
投稿

猜你喜欢

  • 13个最常用的Python深度学习库介绍

    2023-08-04 03:08:09
  • 网页特效文字之—压纹字

    2023-06-26 19:30:06
  • 用Python实现群发邮件

    2023-10-30 20:04:36
  • Dreamweaver制作网页幻灯片效果

    2010-07-06 13:48:00
  • Python 数据可视化pyecharts的使用详解

    2021-07-07 20:29:55
  • Python设计模式结构型代理模式

    2023-06-30 19:23:58
  • GitLab使用外部提供的Redis缓存数据库的方法详解

    2024-01-23 10:02:57
  • TensorFlow人工智能学习张量及高阶操作示例详解

    2022-04-15 15:37:52
  • Django 限制用户访问频率的中间件的实现

    2023-12-17 20:19:19
  • SQL Server 对表的主键设计问题及解决办法

    2010-06-07 13:29:00
  • Python爬虫框架Scrapy安装使用步骤

    2022-02-23 13:49:09
  • MySQL查询优化之索引的应用详解

    2024-01-12 14:14:38
  • 微信小程序实现图片上传功能实例(前端+PHP后端)

    2023-11-05 14:19:27
  • 如何拒绝同一张表单被多次提交?

    2009-12-16 18:46:00
  • 在Infopath中实现数据有效性验证的三种方法

    2023-03-06 15:25:31
  • 如何对Oracle8数据库进行维护?

    2009-11-20 18:01:00
  • python实现矩阵乘法

    2023-11-03 07:41:10
  • GDB调试Mysql实战之源码编译安装

    2024-01-28 00:37:42
  • sqlserver 数据库压缩与数据库日志(ldf)压缩方法分享

    2012-01-05 18:57:19
  • win10下Python3.6安装、配置以及pip安装包教程

    2022-09-27 12:29:46
  • asp之家 网络编程 m.aspxhome.com