Create XML Files Out Of SQL Server With SSIS And FOR XML Syntax
So you want to spit out some XML from SQL Server into a file, how can you do that? There are a couple of ways, I will show you how you can do it with SSIS. In the SSIS package you need an Execute SQL Task and a Script Task.
Let's get started
First create and populate these two tables in your database
- create table Artist (ArtistID int primary key not null,
- ArtistName ))
- go
- create table Album(AlbumID int primary key not null,
- ArtistID int not null,
- AlbumName ) not null,
- YearReleased smallint not null)
- go
- ,'Pink Floyd')
- ,'Incubus')
- ,'Prince')
- ,,)
- ,,)
- ,,)
- ,,)
- ,,)
- ,,)
- ,,)
Now create this proc
- create proc prMusicCollectionXML
- as
- declare @XmlOutput xml
- set @XmlOutput = (select ArtistName,AlbumName,YearReleased from Album
- join Artist on Album.ArtistID = Artist.ArtistID
- FOR XML AUTO, ROOT('MusicCollection'), ELEMENTS)
- select @XmlOutput
- go
After executing the proc
- exec prMusicCollectionXML
you will see the following output
- <MusicCollection>
- <Artist>
- <ArtistName>Pink Floyd</ArtistName>
- <Album>
- <AlbumName>Wish You Were Here</AlbumName>
- <YearReleased>1975</YearReleased>
- </Album>
- <Album>
- <AlbumName>The Wall</AlbumName>
- <YearReleased>1979</YearReleased>
- </Album>
- </Artist>
- <Artist>
- <ArtistName>Prince</ArtistName>
- <Album>
- <AlbumName>Purple Rain</AlbumName>
- <YearReleased>1984</YearReleased>
- </Album>
- <Album>
- <AlbumName>Lotusflow3r</AlbumName>
- <YearReleased>2009</YearReleased>
- </Album>
- <Album>
- <AlbumName>1999</AlbumName>
- <YearReleased>1982</YearReleased>
- </Album>
- </Artist>
- <Artist>
- <ArtistName>Incubus</ArtistName>
- <Album>
- <AlbumName>Morning View</AlbumName>
- <YearReleased>2001</YearReleased>
- </Album>
- <Album>
- <AlbumName>Light Grenades</AlbumName>
- <YearReleased>2006</YearReleased>
- </Album>
- </Artist>
- </MusicCollection>
So far so good, so how do we dump that data into a file? Create a new SSIS package add an ADO.NET Connection, name it AdventureWorksConnection Drop an Execute SQL Task onto your control flow and modify the properties so it looks like this

On the add a result set by clicking on the add button, change the variable name to User::XMLOutput if it is not already like that
Note!!! In SSIS 2008 this variable should be already created otherwise it will fail

Now execute the package. You will be greeted with the following message: Error: 0xC00291E3 at Execute SQL Task, Execute SQL Task: The result binding name must be set to zero for full result set and XML results. Task failed: Execute SQL Task In order to fix that, change the Result Name property from NewresultName to 0, now run it again and it should execute successfully.
Our next step will be to write this XML to a file. Add a Script Task to the package,double click the Script Task,click on script and type XMLOutput into the property of ReadWriteVariables. It should look like the image below

Click the Design Script button, this will open up a code window, replace all the code you see with this
- ' Microsoft SQL Server Integration Services Script Task
- ' Write scripts using Microsoft Visual Basic
- ' The ScriptMain class is the entry point of the Script Task.
- Imports System
- Imports System.Data
- Imports System.Math
- Imports Microsoft.SqlServer.Dts.Runtime
- Public Class ScriptMain
- Public Sub Main()
- '
- ' Add your code here
- '
- Dim XMLString As String = " "
- XMLString = Dts.Variables("XMLOutput").Value.ToString.Replace("<ROOT>", "").Replace("</ROOT>", "")
- XMLString = "<?xml version=""1.0"" ?>" + XMLString
- GenerateXmlFile("C:\\MusicCollection.xml", XMLString)
- End Sub
- Public Sub GenerateXmlFile(ByVal filePath As String, ByVal fileContents As String)
- Dim objStreamWriter As IO.StreamWriter
- Try
- objStreamWriter = New IO.StreamWriter(filePath)
- objStreamWriter.Write(fileContents)
- objStreamWriter.Close()
- Catch Excep As Exception
- MsgBox(Excep.Message)
- End Try
- Dts.TaskResult = Dts.Results.Success
- End Sub
- End Class
SSIS 2008 requires a code change Here is what the code should look like if you are running SSIS 2008
- ' Microsoft SQL Server Integration Services Script Task
- ' Write scripts using Microsoft Visual Basic 2008.
- ' The ScriptMain is the entry point class of the script.
- Imports System
- Imports System.Data
- Imports System.Math
- Imports Microsoft.SqlServer.Dts.Runtime
- <System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
- <System.CLSCompliantAttribute(False)> _
- Partial Public Class ScriptMain
- Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
- Enum ScriptResults
- Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
- Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
- End Enum
- Public Sub Main()
- '
- ' Add your code here
- '
- Dim XMLString As String = " "
- XMLString = Dts.Variables("XMLOutput").Value.ToString.Replace("<ROOT>", "").Replace("</ROOT>", "")
- XMLString = "<?xml version=""1.0"" ?>" + XMLString
- GenerateXmlFile("C:\\MusicCollection.xml", XMLString)
- End Sub
- Public Sub GenerateXmlFile(ByVal filePath As String, ByVal fileContents As String)
- Dim objStreamWriter As IO.StreamWriter
- Try
- objStreamWriter = New IO.StreamWriter(filePath)
- objStreamWriter.Write(fileContents)
- objStreamWriter.Close()
- Catch Excep As Exception
- MsgBox(Excep.Message)
- End Try
- Dts.TaskResult = ScriptResults.Success
- End Sub
- End Class
There are a couple of things you need to know, the XML will be generated inside a <ROOT> tag, I am stripping that out on line 23 of the code, on line 24 I am adding <?xml version="1.0" ?> to the file. Line 26 has the location where the file will be written, right now it is C:\MusicCollection.xml but you can modify that.
So now we are all done with this. It is time to run this package. Run the package and you should see that file has been created.
Create XML Files Out Of SQL Server With SSIS And FOR XML Syntax的更多相关文章
- SQL Server 2008中如何为XML字段建立索引
from:http://blog.csdn.net/tjvictor/article/details/4370771 SQL Server中的XML索引分为两类:主XML 索引和辅助XML索引.其中辅 ...
- 在SQL Server中将数据导出为XML和Json
有时候需要一次性将SQL Server中的数据导出给其他部门的也许进行关联或分析,这种需求对于SSIS来说当然是非常简单,但很多时候仅仅需要一次性导出这些数据而建立一个SSIS包就显得小题大做 ...
- 微软BI 之SSIS 系列 - 两种将 SQL Server 数据库数据输出成 XML 文件的方法
开篇介绍 在 SSIS 中并没有直接提供从数据源到 XML 的转换输出,Destination 的输出对象有 Excel File, Flat File, Database 等,但是并没有直接提供 X ...
- Create maintenance backup plan in SQL Server 2008 R2 using the wizard
You will need to identify how you want your maintenance plan to be setup. In this example the mainte ...
- SQL SERVER 原来还可以这样玩 FOR XML PATH
FOR XML PATH 有的人可能知道有的人可能不知道,其实它就是将查询结果集以XML形式展现,有了它我们可以简化我们的查询语句实现一些以前可能需要借助函数活存储过程来完成的工作.那么以一个实例为主 ...
- SQL Server 将数据导出为XML和Json
有时候需要一次性将SQL Server中的数据导出给其他部门的也许进行关联或分析,这种需求对于SSIS来说当然是非常简单,但很多时候仅仅需要一次性导出这些数据而建立一个SSIS包就显得小题大做,而SQ ...
- Sql Server 部署SSIS包完成远程数据传输
本篇介绍如何使用SSIS和作业完成自动更新目标数据任务. ** 温馨提示:如需转载本文,请注明内容出处.** 本文链接:https://www.cnblogs.com/grom/p/9018978.h ...
- SQL Server 2008 R2——使用FOR XML PATH实现多条信息按指定格式在一行显示
=================================版权声明================================= 版权声明:原创文章 谢绝转载 请通过右侧公告中的“联系邮 ...
- SQL SERVER与SSIS 数据类型对应关系
随机推荐
- 牛客网 牛客练习赛43 C.Tachibana Kanade Loves Review-最小生成树(并查集+Kruskal)+建虚点+读入挂
链接:https://ac.nowcoder.com/acm/contest/548/C来源:牛客网 Tachibana Kanade Loves Review 时间限制:C/C++ 2秒,其他语言4 ...
- TextView部分文字可点击跳转
效果图: 需求:每个item的文字都有两部分是连接可点击 当然需要用到SpannableString和ClickableSpan. import android.text.TextPaint; imp ...
- cdoj1092-韩爷的梦 (字符串hash)【hash】
http://acm.uestc.edu.cn/#/problem/show/1092 韩爷的梦 Time Limit: 200/100MS (Java/Others) Memory Limi ...
- C# 找出实现某个接口的所有类
该方法只能找实现某个接口的类,不能找继承某个抽象类的子类 var types = AppDomain.CurrentDomain.GetAssemblies() .SelectMany(a => ...
- hp
命令组成hpacucli [parameter=value] 查看: 查看所有控制器状态 hpacucli ctrl all show 查看slot 0阵列信息详细状态 (可以查看物理磁盘和逻辑磁盘的 ...
- luoguP3750 [六省联考2017]分手是祝愿 概率期望DP + 贪心
...........真的神状态了,没办法去想的状态................... 考试的时候选择$50$分贪心+$15$分状压吧,别的点就放弃算了........ 令$f[i]$表示从最小步 ...
- [APIO2007]风铃 --- 贪心
[APIO2007]风铃 题目描述 你准备给弟弟 Ike 买一件礼物,但是,Ike 挑选礼物的方式很特别:他只喜欢那些能被他排成有序形状的东西. 你准备给 Ike 买一个风铃.风铃是一种多层的装饰品, ...
- TortoiseSVN 修改密码
在第一次使用TortoiseSVN从服务器CheckOut的时候,会要求输入用户名和密码,这时输入框下面有个选项是保存认证信息,如果选了这个选项,那么以后就不用每次都输入一遍用户名密码了. 不过,如果 ...
- UVA1493 - Draw a Mess(并查集)
UVA1493 - Draw a Mess(并查集) 题目链接 题目大意:一个N * M 的矩阵,每次你在上面将某个范围上色,不论上面有什么颜色都会被最新的颜色覆盖,颜色是1-9,初始的颜色是0.最后 ...
- WM-G-MR-09模块
WM-G-MR-09模块,该模块同时支持SDIO与SPI 模式 USI(环隆电气)WM-G-MR-09,该WiFi芯片支持802.11b/g无线网络模式,芯片体积8.2×8.4×1.35(mm),采用 ...