asp导入 xml 文件

declare @idoc int
declare @doc varchar(1000)
--sample xml document
set @doc ='
<root>
<customer cid= "c1" name="janine" city="issaquah">
<order oid="o1" date="1/20/1996" amount="3.5" />
<order oid="o2" date="4/30/1997" amount="13.4">customer was very satisfied
</order>
</customer>
<customer cid="c2" name="ursula" city="oelde" >
<order oid="o3" date="7/14/1999" amount="100" note="wrap it blue
white red">
<urgency>important</urgency>
happy customer.
</order>
<order oid="o4" date="1/20/1996" amount="10000"/>
</customer>
</root>
'
-- create an internal representation of the xml document.
exec sp_xml_preparedocument @idoc output, @doc
-- execute a select statement using openxml rowset provider.
select *
from openxml (@idoc, '/root/customer/order', 1)
with (oid char(5),
amount float,
comment ntext 'text()')
exec sp_xml_removedocument @idoc

邹健的
/********************导整个其他数据库 *********************************************/
用bcp实现的存储过程

/*
实现数据导入/导出的存储过程
根据不同的参数,可以实现导入/导出整个其他数据库 /单个表
调用示例:
--导出调用示例
----导出单个表
exec file2table 'zj','','','xzkh_sa..地区资料','c:\zj.txt',1
----导出整个其他数据库
exec file2table 'zj','','','xzkh_sa','c:\docman',1
--导入调用示例
----导入单个表
exec file2table 'zj','','','xzkh_sa..地区资料','c:\zj.txt',0
----导入整个其他数据库
exec file2table 'zj','','','xzkh_sa','c:\docman',0
*/
if exists(select 1 from sysobjects where name='file2table' and objectproperty(id,'isprocedure')=1)
drop procedure file2table
go
create procedure file2table
@servername varchar(200)--服务器名
,@username varchar(200)--用户名,如果用nt验证方式,则为空''
,@password varchar(200)--密码
,@tbname varchar(500)--其他数据库 .dbo.表名,如果不指定:.dbo.表名,则导出其他数据库 的所有用户表
,@filename varchar(1000)--导入/导出路径/文件名,如果@tbname参数指明是导出整个其他数据库 ,则这个参数是文件存放路径,文件名自动用表名.txt
,@Iphone 苹果 ios ut bit--1为导出,0为导入
as
declare @sql varchar(8000)
if @tbname like '%.%.%' --如果指定了表名,则直接导出单个表
begin
set @sql='bcp '+@tbname
+case when @Iphone 苹果 ios ut=1 then ' out ' else ' in ' end
+' "'+@filename+'" /w'
+' /s '+@servername
+case when isnull(@username,'')='' then '' else ' /u '+@username end
+' /p '+isnull(@password ,'')
exec master..xp_cmdshell @sql
end
else
begin--导出整个其他数据库 ,定义游标,取出所有的用户表
declare @m_tbname varchar(250)
if right(@filename,1)<>'\' set @filename=@filename+'\'
set @m_tbname='declare #tb cursor for select name from '+@tbname+'..sysobjects where xtype=''u'''
exec(@m_tbname)
open #tb
fetch next from #tb into @m_tbname
while @@fetch_status=0
begin
set @sql='bcp '+@tbname+'..'+@m_tbname
+case when @Iphone 苹果 ios ut=1 then ' out ' else ' in ' end
+' "'+@filename+@m_tbname+'.txt " /w'
+' /s '+@servername
+case when isnull(@username,'')='' then '' else ' /u '+@username end
+' /p '+isnull(@password ,'')
exec master..xp_cmdshell @sql
fetch next from #tb into @m_tbname
end
close #tb
deallocate #tb
end
go

猜你喜欢

转载自www.cnblogs.com/ince/p/9156700.html
今日推荐