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 数据类型对应关系
随机推荐
- [转]跟我一起写Makefile系列
原作者:陈皓专栏 [空谷幽兰,心如皓月] 跟我一起写 Makefile(一) 跟我一起写 Makefile(二) 跟我一起写 Makefile(三) 跟我一起写 Makefile(四) 跟我一起写 M ...
- Loadrunner脚本开发规范
Loadrunner脚本开发规范 目录 1.一般约定... 3 2.代码注释约定... 4 3.格式化代码... 5 1.一般约定 1.1具体脚本规则,必须在具体代码中加注释,以便脚本开发人员阅读和理 ...
- bzoj 1855 dp + 单调队列优化
思路:很容易写出dp方程,很容易看出能用单调队列优化.. #include<bits/stdc++.h> #define LL long long #define fi first #de ...
- Codeforces Round #222 (Div. 1) 博弈 + dp
一般这种要倒着来. #include<bits/stdc++.h> #define LL long long #define fi first #define se second #def ...
- JAVA编程思想读书笔记(二)--容器
接上篇JAVA编程思想读书笔记(一) 第八章.对象的容纳 No1: java提供了四种类型的集合类:Vector(矢量).BitSet(位集).Stack(堆栈).Hashtable(散列表) No2 ...
- SCU 4445 Right turn
模拟. 每次找一下即将要遇到的那个点,这个数据范围可以暴力找,自己的写的时候二分了一下.如果步数大于$4*n$一定是$-1$. #include<bits/stdc++.h> using ...
- 使用JDBC连接数据库的一些BUG
题记:前几天用JDBC连接MYSQL数据库的时候,出现了一些BUG,有代码层次的,也有设置层次的, 下面的解决方法时我目前所遇到的,后期如果还有遇到的会进行补充. 一.出现:远程mysql_java. ...
- 创建模态提醒窗口(UIAlertView)
UIAlertView类创建一个简单的模态提醒窗口,可能包含消息.按钮以及文本框.模态UI元素要求用户必须与之交互(通常是按下按钮)后才能做其它事情.它们通常位于其他窗口前面,在可见时禁止用户与其他任 ...
- Vue.js 系列教程 3:Vue
原文:intro-to-vue-3-vue-cli-lifecycle-hooks 译者:nzbin 这是 JavaScript 框架 Vue.js 五篇教程的第三部分.在这一部分,我们将学习 Vue ...
- java8新特性——四大内置核心函数式接口
在前面几篇简单介绍了一些Lambda表达式得好处与语法,我们知道使用Lambda表达式是需要使用函数式接口得,那么,岂不是在我们开发过程中需要定义许多函数式接口,其实不然,java8其实已经为我们定义 ...