<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>SQL Server Performance &#187; SSIS</title>
	<atom:link href="http://www.sql-server-performance.com/tag/ssis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sql-server-performance.com</link>
	<description>SQL Server Performance Tuning</description>
	<lastBuildDate>Mon, 20 May 2013 03:15:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Using Temp Tables in SSIS</title>
		<link>http://www.sql-server-performance.com/2013/temp-tables-ssis/</link>
		<comments>http://www.sql-server-performance.com/2013/temp-tables-ssis/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 04:44:23 +0000</pubDate>
		<dc:creator>Divya Agrawal Shah</dc:creator>
				<category><![CDATA[General DBA]]></category>
		<category><![CDATA[SSIS]]></category>
		<category><![CDATA[Temp Table]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3574</guid>
		<description><![CDATA[Temporary tables are created in the TempDB database, which persists for a particular session. The objective is to maintain that session, until the temp table information is used and dump the data into a physical table. To maintain a session in SSIS, there is a &#8216;Retain Same Connection&#8217; property of the Connection Manager. If we [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2013/temp-tables-ssis/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New SSIS Features in SQL Server 2012</title>
		<link>http://www.sql-server-performance.com/2012/ssis-features-sql-server-2012/</link>
		<comments>http://www.sql-server-performance.com/2012/ssis-features-sql-server-2012/#comments</comments>
		<pubDate>Mon, 18 Jun 2012 14:26:10 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[Reporting]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3006</guid>
		<description><![CDATA[SQL Server Integration Services (SSIS) has under-gone through some significant changes in SQL Server 2012 which I will outline in this article. Connection Managers Now you have project-based connection managers which mean those connection will be available for all the packages that you are creating. This avoids recreating frequently used connections for every package.  Those [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2012/ssis-features-sql-server-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Stored A Procedure with Temp Tables for SSIS Packages</title>
		<link>http://www.sql-server-performance.com/2012/using-stored-a-procedure-with-temp-tables-for-ssis-packages/</link>
		<comments>http://www.sql-server-performance.com/2012/using-stored-a-procedure-with-temp-tables-for-ssis-packages/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 09:37:20 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[General DBA]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=2937</guid>
		<description><![CDATA[Using stored procedure with temp tables for SSIS packages. Some stored procedures are complex and so require temporary tables or table variables. Let us say we have the following procedure to extract data. CREATE PROC ProcWithTableVariable AS DECLARE @Table TABLE (id Int) INSERT INTO @Table VALUES (1),(2) SELECT * FROM @Table And SSIS OLE DB [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2012/using-stored-a-procedure-with-temp-tables-for-ssis-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing data from text file to specific columns using BULK INSERT</title>
		<link>http://www.sql-server-performance.com/2011/importing-data-from-text-file-to-specific-columns-using-bulk-insert/</link>
		<comments>http://www.sql-server-performance.com/2011/importing-data-from-text-file-to-specific-columns-using-bulk-insert/#comments</comments>
		<pubDate>Tue, 31 May 2011 03:25:16 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[General DBA]]></category>
		<category><![CDATA[BULK INSERT]]></category>
		<category><![CDATA[Importing Data]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=2535</guid>
		<description><![CDATA[Bulk insert is much faster than using other techniques such as  SSIS. However, when you are using bulk insert you can’t insert to specific columns. If, for example, there are five columns in a table you should have five values for each record in the text file you are importing from. This is an issue [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2011/importing-data-from-text-file-to-specific-columns-using-bulk-insert/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Import dbase (dbf) Files using SQL Server.</title>
		<link>http://www.sql-server-performance.com/2011/import-dbf-files/</link>
		<comments>http://www.sql-server-performance.com/2011/import-dbf-files/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 01:12:50 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[General DBA]]></category>
		<category><![CDATA[dbf]]></category>
		<category><![CDATA[export wizard]]></category>
		<category><![CDATA[hetero Import]]></category>
		<category><![CDATA[import dbase]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1918</guid>
		<description><![CDATA[SQL Server integration Service (SSIS) can be used to import data from heterogeneous data sources ranging from SQL Server, Oracle to CSV, XML files. To Import a single DBF file to SSIS 1. Open Microsoft Visual Studio 2008 and create a SSIS project. 2. Drag and Drop a Data flow task to Control flow and [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2011/import-dbf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting Services 2008 R2: Geospatial Visualization – Part II</title>
		<link>http://www.sql-server-performance.com/2010/geospatial-visualization-ii/</link>
		<comments>http://www.sql-server-performance.com/2010/geospatial-visualization-ii/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 01:12:50 +0000</pubDate>
		<dc:creator>Dinesh Priyankara</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Geospatial]]></category>
		<category><![CDATA[Spatial]]></category>
		<category><![CDATA[Spatial Data]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1881</guid>
		<description><![CDATA[This is the continuation of my previous article: Reporting Services 2008 R2: Geospatial Visualization &#8211; Part I. Part I discussed the&#160; main characteristics related to the Map Report Item, Data sources for spatial data, how to create a map report using shapefiles, and finally add analytical data to it.&#160; Our goal in the part is [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2010/geospatial-visualization-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Know your Data with Data Profiling</title>
		<link>http://www.sql-server-performance.com/2010/data-profiling-intro/</link>
		<comments>http://www.sql-server-performance.com/2010/data-profiling-intro/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 01:12:50 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Profiling]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1876</guid>
		<description><![CDATA[Introduction According to the &#8220;Data Quality and the Bottom Line: Achieving Business Success through a Commitment to High Quality Data.&#8221; The Data Warehousing Institute. Report Series 2002, data quality problems cost U.S. businesses more than $600 billion per year. Why such a cost? If your data is not up to quality, your KPIs and data [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2010/data-profiling-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bridge The Gap between Bing and Google Maps using SSIS</title>
		<link>http://www.sql-server-performance.com/2010/bing-google-maps/</link>
		<comments>http://www.sql-server-performance.com/2010/bing-google-maps/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 01:12:50 +0000</pubDate>
		<dc:creator>Siddharth Mehta</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1871</guid>
		<description><![CDATA[Overview:&#160;Business Intelligence (BI) is a much known term in comparison to the term Spatial Intelligence (SI). Spatial Intelligence is not limited to just space agencies, in fact it&#8217;s used day to day by many of us. A simple example can be analyzing usage of your blog from different parts of the world. By analyzing the [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2010/bing-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shared Datasets in SQL Server 2008 R2</title>
		<link>http://www.sql-server-performance.com/2010/shared-datasets/</link>
		<comments>http://www.sql-server-performance.com/2010/shared-datasets/#comments</comments>
		<pubDate>Fri, 28 May 2010 01:12:50 +0000</pubDate>
		<dc:creator>Siddharth Mehta</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Datasets]]></category>
		<category><![CDATA[Shared Datasets]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1870</guid>
		<description><![CDATA[This article leverages the examples and concepts explained in the Part I through Part IV of the spatial data series which develops a &#8220;BI-Satellite&#8221; app. Overview In the spatial data series we looked at free-form text based address data and worked towards developing a Geospatial Dashboard . In this artilce we will look at using [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2010/shared-datasets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Achieve Spatial Data Support in SSIS</title>
		<link>http://www.sql-server-performance.com/2010/spatial-data-support-ssis/</link>
		<comments>http://www.sql-server-performance.com/2010/spatial-data-support-ssis/#comments</comments>
		<pubDate>Mon, 24 May 2010 01:12:50 +0000</pubDate>
		<dc:creator>Siddharth Mehta</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Spatial Data]]></category>
		<category><![CDATA[SSIS]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1869</guid>
		<description><![CDATA[Overview SQL Server 2008 introduced a new category of datatypes known as spatial datatypes which store spatial information. The new spatial datatypes are geography and geometry. SQL Server Management Studio comes with good good support for these spatial data types like the spatial results tab and facilitated access to .NET Common Language Runtime (CLR) functions [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2010/spatial-data-support-ssis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
