首页 > 开发 > 综合 > 正文

一个将数据导出到EXCEL的存储过程

2024-07-21 02:06:20
字体:
来源:转载
供稿:网友

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

/*--调用示例

 p_exporttb @sqlstr='select * from 地区资料'
  ,@path='c:/',@fname='aa.xls',@sheetname='地区资料'
--*/



create proc p_exporttb
@tbname sysname,    --要导出的表名
@path nvarchar(1000),   --文件存放目录
@fname nvarchar(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 @[email protected]+'.xls'

--检查文件是否已经存在
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 8.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

/*--如果覆盖已经存在的表,就加上下面的语句
--创建之前先删除表/如果存在的话
select @sql='drop table ['[email protected]+']'
exec @err=sp_oamethod @obj,'execute',@out out,@sql
--*/

--创建表的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 syscolumns a left join systypes b on a.xtype=b.xusertype
where b.name not in('image','text','uniqueidentifier','sql_variant','ntext','varbinary','binary','timestamp')
 and object_id(@tbname)=id
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 8.0;hdr=yes
   ;database='[email protected][email protected]+''',['[email protected]+'$])'

exec('insert into '[email protected]+'('[email protected]+') select '[email protected]+' from '[email protected])

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

go


========================================
ningoo注:
 excel文件每个工作表不能超过65536条记录


解决办法:

.如果数据量大于65536,可以在调用存储过程前先将要导出的table拆分成几个小的临时table,然后
在分别导出到不同的工作表中

中国最大的web开发资源网站及技术社区,
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表