從sql server中導入/導出 excel 的基本方法
/*=================== 導入/導出 excel 的基本方法 ===================*/
從excel文件中,導入數據到sql數據庫中,很簡單,直接用下面的語句:
/*========================================================*/
--如果接受數據導入的表已經存在
insert into 表 select * from
openrowset('microsoft.jet.oledb.4.0'
,'excel 5.0;hdr=yes;database=c:test.xls',sheet1$)
--如果導入數據并生成表
select * into 表 from
openrowset('microsoft.jet.oledb.4.0'
,'excel 5.0;hdr=yes;database=c:test.xls',sheet1$)
/*========================================================*/
--如果從sql數據庫中,導出數據到excel,如果excel文件已經存在,而且已經按照要接收的數據創建好表頭,就可以簡單的用:
insert into openrowset('microsoft.jet.oledb.4.0'
,'excel 5.0;hdr=yes;database=c:test.xls',sheet1$)
select * from 表
--如果excel文件不存在,也可以用bcp來導成類excel的文件,注意大小寫:
--導出表的情況
exec master..xp_cmdshell 'bcp 數據庫名.dbo.表名 out "c:test.xls" /c -/s"服務器名" /u"用戶名" -p"密碼"'
--導出查詢的情況
exec master..xp_cmdshell 'bcp "select au_fname, au_lname from pubs..authors order by au_lname" queryout "c:test.xls" /c -/s"服務器名" /u"用戶名" -p"密碼"'
/*--說明:
c:test.xls 為導入/導出的excel文件名.
sheet1$ 為excel文件的工作表名,一般要加上$才能正常使用.
--*/
--上面已經說過,用bcp導出的是類excel文件,其實質為文本文件,
--要導出真正的excel文件.就用下面的方法
/*--數據導出excel
導出表中的數據到excel,包含字段名,文件為真正的excel文件
,如果文件不存在,將自動創建文件
,如果表不存在,將自動創建表
基于通用性考慮,僅支持導出標準數據類型
--鄒建 2003.10--*/
/*--調用示例
p_exporttb @tbname='地區資料',@path='c:',@fname='aa.xls'
--*/
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
@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=" +';database='[email protected]+'"'
--連接數據庫 www.knowsky.com
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 5.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
--上面是導表的,下面是導查詢語句的.
新聞熱點
疑難解答