| 发表于:2007-06-17 08:00:462楼 得分:20 |
'转贴 'original author: 邹建 --从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文件的工作表名,一般要加上$才能正常使用. --*/ --下面是导出真正excel文件的方法: 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 /*--数据导出excel 导出表中的数据到excel,包含字段名,文件为真正的excel文件 ,如果文件不存在,将自动创建文件 ,如果表不存在,将自动创建表 基于通用性考虑,仅支持导出标准数据类型 --邹建 2003.10(引用请保留此信息)--*/ /*--调用示例 p_exporttb @tbname= '地区资料 ',@path= 'c:\ ',@fname= 'aa.xls ' --*/ 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 @fname=@tbname+ '.xls ' --检查文件是否已经存在 if right(@path,1) <> '\ ' set @path=@path+ '\ ' 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= 'driver={microsoft excel driver (*.xls)};dsn= ' ' ' ';readonly=false ' + ';create_db= " '+@sql+ ' ";dbq= '+@sql else set @constr= 'provider=microsoft.jet.oledb.4.0;extended properties= "excel 8.0;hdr=yes ' + ';database= '+@sql+ ' " ' --连接数据库 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 [ '+@tbname+ '] ' EXEC @err=sp_oamethod @obj, 'EXECute ',@out out,@sql --*/ --创建表的sql select @sql= ' ',@fdlist= ' ' select @fdlist=@fdlist+ ',[ '+a.name+ '] ' ,@sql=@sql+ ',[ '+a.name+ '] ' +case when b.name like '%char ' then case when a.length> 255 then 'memo ' else 'text( '+cast(a.length as varchar)+ ') ' end when b.name like '%int ' or b.name= 'bit ' then 'int ' when b.name like '%datetime ' then 'datetime ' when b.name like '%money ' then 'money ' when b.name like '%text ' then 'memo ' else b.name end from syscolumns a left join systypes b on a.xtype=b.xusertype where b.name not in( 'image ', 'uniqueidentifier ', 'sql_variant ', 'varbinary ', 'binary ', 'timestamp ') and object_id(@tbname)=id select @sql= 'create table [ '+@tbname + ']( '+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;imex=1 ;database= '+@path+@fname+ ' ' ',[ '+@tbname+ '$]) ' EXEC( 'insert into '+@sql+ '( '+@fdlist+ ') select '+@fdlist+ ' from '+@tbname) 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 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 | | |
|