导出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_‘[email protected] 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 @[email protected] SET @strsql+=‘ -c -T -k‘ exec master..xp_cmdshell @strsql DELETE as_product..xmltab --删除数据
时间: 2024-11-07 06:08:49