码迷,mamicode.com
首页 > 数据库 > 详细

SQL将数据导出到XML文件

时间:2015-04-03 19:17:00      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

导出XML文件有两种方法: 方法一:直接导出到XML文件,无须创建表来存储XML文本到数据库,但是如果值含中文时无法正常打开XML文件,有待研究,上代码: 需要注意的是查询数据时表前面一定要跟 数据库..表名

1 create proc [dbo].[OutputXML] 

AS
declare @strsql VARCHAR(4000)

declare @strPath VARCHAR(100)
declare @str VARCHAR(200)
SELECT @str= convert(varchar(12),getdate()-1,112)

SET @strPath=F:\XMLOutFile\

SET @strPath+=P_+@str

SET @strPath+=.XML

SET @strsql=BCP "select id, isnull(name,‘‘‘‘) AS rname from Tdb..TableTest

SET @strsql+=FOR XML PATH(‘‘roots‘‘),TYPE , ELEMENTS ,ROOT(‘‘rootP‘‘)" QUERYOUT "

SET @strsql+=@strPath
SET @strsql+=" -c -t -T -S localhost

EXEC xp_cmdshell @strsql

 

方法二:需要创建一个表来存储文本

crate table xmltab (xtable varchar(max)) 
crate PROC [dbo].[OutputXML] 
AS
 declare @strsql VARCHAR(4000) 
declare @strPath VARCHAR(100)
 declare @str VARCHAR(200)
SELECT @str= convert(varchar(12),getdate()-1,112) 
SET @strPath=‘F:\XMLOutFile\‘
 SET @strPath+=‘B_‘+@str 
SET @strPath+=‘.XML‘ 
insert into tdb..xmltab values(‘<?xml version="1.0" encoding="GB2312"?>‘) declare @x xml set @x=( select id, isnull(name,‘‘‘‘) AS rname from Tdb..TableTest FOR XML PATH(‘roots‘),TYPE , ELEMENTS ,ROOT(‘rootp‘)) insert into Tdb..xmltab select cast(@x as varchar(max)) SET @strsql=‘bcp Tdb..dbo.xmltab out ‘ SET @strsql+=@strPath SET @strsql+=‘ -c -T -k‘ exec master..xp_cmdshell @strsql DELETE as_product..xmltab --删除数据

  

SQL将数据导出到XML文件

标签:

原文地址:http://www.cnblogs.com/leojon/p/4390643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!