国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

一個將數據導出到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開發資源網站及技術社區,
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 个旧市| 铁力市| 临泽县| 重庆市| 肥东县| 承德县| 阜新| 兴国县| 昌图县| 乡城县| 饶阳县| 道孚县| 永嘉县| 玉门市| 金塔县| 桐柏县| 庄河市| 专栏| 长春市| 临海市| 长武县| 绵阳市| 永济市| 石首市| 邯郸市| 宜阳县| 福贡县| 赞皇县| 探索| 普安县| 大足县| 石棉县| 茶陵县| 泰安市| 福建省| 曲周县| 河曲县| 盘山县| 大庆市| 宁阳县| 河曲县|