<?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>zlika&#039;s &#187; SSIS</title>
	<atom:link href="http://zlika.org/index.php/tag/ssis/feed/" rel="self" type="application/rss+xml" />
	<link>http://zlika.org</link>
	<description>Think SMART!</description>
	<lastBuildDate>Fri, 06 Apr 2012 03:09:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)</title>
		<link>http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/</link>
		<comments>http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 18:26:29 +0000</pubDate>
		<dc:creator>zlika</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://zlika.org/?p=254</guid>
		<description><![CDATA[Microsoft® SQL Server™ Integration Services is the tool that connects the database to the world and works instead of us. I&#8217;ll show you how to extract simple data from the database, store the files in a the file system, rename them, upload them on FTP and report the errors to administrator if any. 

In this first [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft® SQL Server™ Integration Services is the tool that connects the database to the world and works instead of us. I&#8217;ll show you how to extract simple data from the database, store the files in a the file system, rename them, upload them on FTP and report the errors to administrator if any. </p>
<p><span id="more-254"></span></p>
<p>In this first part I will create the package. Next I&#8217;ll implement it into SQL Server.</p>
<p>The steps we need are:<br />
1. Create the directories for storing the files &#8211; C:\Temp\Source\, C:\Temp\ForUpload\, C:\Temp\Archive\. If they already exist, we use them instead of create them<br />
2. Move the files from Source directory to ForUpload directory with changing of the name (adding date and time)<br />
3. Upload the renamed files on FTP server<br />
4. Move the files to Archive folder</p>
<p>First, create a new SSIS project (File &#8211;&gt; New &#8211;&gt; Project) in SQL Server Business Intelligence Development Studio.</p>
<div id="attachment_317" class="wp-caption aligncenter" style="width: 693px"><a href="http://zlika.org/wp-content/uploads/2010/03/011.png" rel="lightbox[254]"><img class="size-full wp-image-317" title="New SSIS Project" src="http://zlika.org/wp-content/uploads/2010/03/011.png" alt="" width="683" height="490" /></a><p class="wp-caption-text">New SSIS Project</p></div>
<p>Rename the package.</p>
<div id="attachment_319" class="wp-caption aligncenter" style="width: 273px"><a href="http://zlika.org/wp-content/uploads/2010/03/021.png" rel="lightbox[254]"><img class="size-full wp-image-319" title="Rename package" src="http://zlika.org/wp-content/uploads/2010/03/021.png" alt="" width="263" height="152" /></a><p class="wp-caption-text">Rename package</p></div>
<p>Create Data Source &#8211; that&#8217;s the place where we will read the data from &#8211; MS SQL Server. In Solution Explorer, right click on Data Sources &#8211;&gt; New Data Source&#8230;</p>
<div id="attachment_321" class="wp-caption aligncenter" style="width: 620px"><a href="http://zlika.org/wp-content/uploads/2010/03/031.png" rel="lightbox[254]"><img class="size-full wp-image-321" title="Create Data Source" src="http://zlika.org/wp-content/uploads/2010/03/031.png" alt="" width="610" height="535" /></a><p class="wp-caption-text">Create Data Source</p></div>
<p>To use the Data Source, I create a New Connection from the existing Data Source. Right click on Connection Managers &#8211;&gt; New Connection From Data Source&#8230;</p>
<div id="attachment_323" class="wp-caption aligncenter" style="width: 393px"><a href="http://zlika.org/wp-content/uploads/2010/03/041.png" rel="lightbox[254]"><img class="size-full wp-image-323" title="Create New Connection from Data Source" src="http://zlika.org/wp-content/uploads/2010/03/041.png" alt="" width="383" height="329" /></a><p class="wp-caption-text">Create New Connection from Data Source</p></div>
<p>Create the global variables for the directories.</p>
<div id="attachment_401" class="wp-caption aligncenter" style="width: 465px"><a href="http://zlika.org/wp-content/uploads/2010/06/06.png" rel="lightbox[254]"><img class="size-full wp-image-401" title="Create global variables" src="http://zlika.org/wp-content/uploads/2010/06/06.png" alt="" width="455" height="131" /></a><p class="wp-caption-text">Create global variables</p></div>
<p style="text-align: center;">
<p>Create the directories &#8211; Source, ForUpload, Archive. Drag the File System Task from Toolbox pane.</p>
<div id="attachment_325" class="wp-caption aligncenter" style="width: 393px"><a href="http://zlika.org/wp-content/uploads/2010/03/051.png" rel="lightbox[254]"><img class="size-full wp-image-325" title="Create Folders" src="http://zlika.org/wp-content/uploads/2010/03/051.png" alt="" width="383" height="373" /></a><p class="wp-caption-text">Create Folders</p></div>
<p>Right click on File System Task to set the properties of the folders.</p>
<div id="attachment_330" class="wp-caption aligncenter" style="width: 608px"><a href="http://zlika.org/wp-content/uploads/2010/03/07.png" rel="lightbox[254]"><img class="size-full wp-image-330 " title="Create Folder" src="http://zlika.org/wp-content/uploads/2010/03/07.png" alt="" width="598" height="541" /></a><p class="wp-caption-text">Create Folder</p></div>
<p>For Exporting the data to flat file, first, I create Data Flow Task.</p>
<div id="attachment_332" class="wp-caption aligncenter" style="width: 599px"><a href="http://zlika.org/wp-content/uploads/2010/03/08.png" rel="lightbox[254]"><img class="size-full wp-image-332" title="Create Data Flow Task" src="http://zlika.org/wp-content/uploads/2010/03/08.png" alt="" width="589" height="159" /></a><p class="wp-caption-text">Create Data Flow Task</p></div>
<p>Data Flow Tab &#8211;&gt; Toolbox &#8211;&gt; Data Flow Sources (ADO NET Source), Data Flow Transformation Source (Sort), Data Flow Destinations.</p>
<p>Edit ADO NET Source. I have written the query in SSMS, but I can build it on this step.</p>
<div id="attachment_334" class="wp-caption aligncenter" style="width: 660px"><a href="http://zlika.org/wp-content/uploads/2010/03/09.png" rel="lightbox[254]"><img class="size-full wp-image-334" title="Edit ADO NET Source" src="http://zlika.org/wp-content/uploads/2010/03/09.png" alt="" width="650" height="636" /></a><p class="wp-caption-text">Edit ADO NET Source</p></div>
<p>Edit Sort</p>
<div id="attachment_338" class="wp-caption aligncenter" style="width: 590px"><a href="http://zlika.org/wp-content/uploads/2010/03/10.png" rel="lightbox[254]"><img class="size-full wp-image-338" title="Edit Sort Transformation" src="http://zlika.org/wp-content/uploads/2010/03/10.png" alt="" width="580" height="618" /></a><p class="wp-caption-text">Edit Sort Transformation</p></div>
<p>Create Flat File Connection &#8211; Delimited</p>
<div id="attachment_339" class="wp-caption aligncenter" style="width: 560px"><a href="http://zlika.org/wp-content/uploads/2010/03/11.png" rel="lightbox[254]"><img class="size-full wp-image-339" title="Create Flat File Connection" src="http://zlika.org/wp-content/uploads/2010/03/11.png" alt="" width="550" height="562" /></a><p class="wp-caption-text">Create Flat File Connection</p></div>
<p>I chose the delimiter ($) in the Columns section</p>
<p>The next step is to rename the files by adding to filename the date and time. I use Foreach Loop Container to cover all the files in the Source folder. I move them to ForUpload folder and rename them in one step. I do it like this, because I need to know on which step the execution is failed and in that case to handle the rest of operations manually.</p>
<div id="attachment_343" class="wp-caption aligncenter" style="width: 598px"><a href="http://zlika.org/wp-content/uploads/2010/03/12.png" rel="lightbox[254]"><img class="size-full wp-image-343" title="Add Foreach Loop Container" src="http://zlika.org/wp-content/uploads/2010/03/12.png" alt="" width="588" height="330" /></a><p class="wp-caption-text">Add Foreach Loop Container</p></div>
<p>Create the local variables for Foreach Loop Container. We need to combine the file path with file name while looping the folder. In the Filename variable we will store the names of the files. To the variable Dir_ForUpload_Filename we will add the date and time.</p>
<div id="attachment_405" class="wp-caption aligncenter" style="width: 610px"><a href="http://zlika.org/wp-content/uploads/2010/06/16.png" rel="lightbox[254]"><img class="size-full wp-image-405" title="Create local variables for File Loop Container" src="http://zlika.org/wp-content/uploads/2010/06/16.png" alt="" width="600" height="189" /></a><p class="wp-caption-text">Create local variables for File Loop Container</p></div>
<p>I create expressions for Dir_ForUpload_FileName and Dir_Source_FileName variables. When I select the variable, the Properties windows (in the down-right corner of the screen) changes.</p>
<div id="attachment_411" class="wp-caption aligncenter" style="width: 402px"><a href="http://zlika.org/wp-content/uploads/2010/06/18.png" rel="lightbox[254]"><img class="size-full wp-image-411" title="Create expression for variable" src="http://zlika.org/wp-content/uploads/2010/06/18.png" alt="" width="392" height="354" /></a><p class="wp-caption-text">Create expression for variable</p></div>
<p>In the Expression field I write the expresisons:</p>
<p>1. Dir_ForUpload_FileName:</p>
<pre class="brush: vb;">
@[User::Dir_ForUpload]
+ SUBSTRING(@[User::FileName], 1, FINDSTRING(@[User::FileName], &quot;.&quot;, 1) - 1)
+ &quot;_&quot;
+ SUBSTRING((DT_WSTR, 30)GETDATE(), 1, 4)
+ &quot;-&quot;
+ SUBSTRING((DT_WSTR, 30)GETDATE(), 6, 2)
+ &quot;-&quot;
+ SUBSTRING((DT_WSTR ,30)GETDATE(), 9, 2)
+ &quot;_&quot;
+ SUBSTRING((DT_WSTR, 30)GETDATE(), 12, 2)
+ SUBSTRING((DT_WSTR, 30)GETDATE(), 15, 2)
+ SUBSTRING((DT_WSTR, 30)GETDATE(), 18, 2)
+ SUBSTRING(@[User::FileName], FINDSTRING(@[User::FileName], &quot;.&quot;, 1), LEN(@[User::FileName]))
</pre>
<p>2. Dir_Source_FileName:</p>
<pre class="brush: vb;">@[User::Dir_Source] +  @[User::FileName]</pre>
<p>Edit Foreach Loop Container. We mark a folder for loop (C:\Temp\Source\). We loop only the .txt files. In Variable Mappings section we add the FileName variable.</p>
<div id="attachment_344" class="wp-caption aligncenter" style="width: 592px"><a href="http://zlika.org/wp-content/uploads/2010/06/13.png" rel="lightbox[254]"><img class="aligncenter size-full wp-image-344" title="Setting Foreach Loop Container" src="http://zlika.org/wp-content/uploads/2010/06/13.png" alt="" width="582" height="556" /></a><p class="wp-caption-text">Setting Foreach Loop Container</p></div>
<p>Setting File System Task (inside the Foreach Loop Container)</p>
<div id="attachment_408" class="wp-caption aligncenter" style="width: 602px"><a href="http://zlika.org/wp-content/uploads/2010/06/14.png" rel="lightbox[254]"><img class="size-full wp-image-408" title="Setting File System Task" src="http://zlika.org/wp-content/uploads/2010/06/14.png" alt="" width="592" height="556" /></a><p class="wp-caption-text">Setting File System Task</p></div>
<p>FTP upload &#8211; drag the Foreach Loop Container and FTP task in it. I create local variable FileName &#8211; the same as in previous step. In Foreach Loop Editor I choose Foreach File Enumerator, C:\Temp\ForUpload\ in Folder field and *.txt in Files field.</p>
<p>Edit FTP task &#8211; I adjust the local and remote paths</p>
<div id="attachment_410" class="wp-caption aligncenter" style="width: 588px"><a href="http://zlika.org/wp-content/uploads/2010/06/17.png" rel="lightbox[254]"><img class="size-full wp-image-410" title="Setting FTP task" src="http://zlika.org/wp-content/uploads/2010/06/17.png" alt="" width="578" height="541" /></a><p class="wp-caption-text">Setting FTP task</p></div>
<p>The next step is loop for placing the files in Archive folder. I won&#8217;t explain it. It&#8217;s the same as the loop, I used to move and rename from Source to ForUpload folder.</p>
<p>The full schema of the objects looks like this:</p>
<div id="attachment_412" class="wp-caption aligncenter" style="width: 645px"><a href="http://zlika.org/wp-content/uploads/2010/06/19.png" rel="lightbox[254]"><img class="size-full wp-image-412" title="All the objects" src="http://zlika.org/wp-content/uploads/2010/06/19.png" alt="" width="635" height="397" /></a><p class="wp-caption-text">All the objects</p></div>
<p>Next I will implement the package into SSMS, I will create Scheduled Job, which will include operator notification. While executing the Job in real-time working enviroment, I will decide whether to add the Send Mail Task in SSIS package.</p>
<p><a title="Source files" href="http://www.zlika.org/wp-content/uploads/2010/06/Move-and-Rename.zip">Source files</a></p>
<p>Félicitations</p>
<hr size="1" noshade>
<p style="font-family = verdana, tahoma, arial, sans-serif; font-size: 10px;">
<a title="Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)" href="http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/"><b>Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)</b></a> <br />
Author: zlika (Peter Lalovsky), Category: <a href="http://zlika.org/index.php/category/it/" title="View all posts in IT" rel="category tag">IT</a>, <a href="http://zlika.org/index.php/category/it/ms-sql-server/" title="View all posts in MS SQL Server" rel="category tag">MS SQL Server</a>, <a href="http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/#comments">%%comment_text%%</a>

<br />

Add to:
<a title="Share on Delicious" href="http://del.icio.us/post?url=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/&title=Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)">Delicious</a> | 
<a title="Share on Facebook" href="http://www.facebook.com/sharer.php?u=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/&t=Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)">Facebook</a> | 
<a title="Share on Twitter" href="http://twitter.com/home?status=Currently reading http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/">Twitter</a> | <a title="Share on Live" href="http://favorites.live.com/quickadd.aspx?url=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/&title=Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)">Live</a> | 
<a title="Share on Reddit" href="http://reddit.com/submit?url=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/&title=Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)">Reddit</a> | 
<a title="Share on Technorati" href="http://www.technorati.com/faves?add=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/">Technorati</a> | 
<a title="Share on Digg" href="http://digg.com/submit?url=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/&title=Simple SSIS Project &#8211; export to flat file, FTP upload, archive (create the package)">Digg</a>

<br />

Followers: <a href="http://www.technorati.com/search/http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/" title="Linking blogs to this article, on Technorati">Technorati</a> | <a href="http://www.google.com/blogsearch?hl=en&q=http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/" title="Linking blogs to this article, on Google">Google</a>

<br />

© 2010, <a href="http://zlika.org">zlika&#039;s</a> (<a href="http://zlika.org/index.php/feed/">RSS</a>)
</p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://zlika.org/index.php/2010/06/06/simple-ssis-project-part-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server</title>
		<link>http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/</link>
		<comments>http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 03:18:58 +0000</pubDate>
		<dc:creator>zlika</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[SSIS]]></category>
		<category><![CDATA[Transact-SQL]]></category>

		<guid isPermaLink="false">http://zlika.org/?p=227</guid>
		<description><![CDATA[My ex-colleague asked me how to insert query result in a variable for generate report in Microsoft SQL Server. After few explanations I noticed that she has decided to use SSIS (SQL Server Integration Services) to automate. She sent me an example in which she uses YEAR(), MONTH() and DAY() functions.

-- YEAR(), MONTH(), DAY()
SELECT
	'Test_'
	+ CAST(YEAR(GETDATE()) AS CHAR(4))
	+ '-'
	+ [...]]]></description>
			<content:encoded><![CDATA[<p>My ex-colleague asked me how to insert query result in a variable for generate report in Microsoft SQL Server. After few explanations I noticed that she has decided to use SSIS (<a title="SQL Server Integration Services" href="http://msdn.microsoft.com/en-us/library/ms141026.aspx" target="_blank">SQL Server Integration Services</a>) to automate. She sent me an example in which she uses YEAR(), MONTH() and DAY() functions.</p>
<p><span id="more-227"></span></p>
<pre class="brush: sql;">-- YEAR(), MONTH(), DAY()
SELECT
	'Test_'
	+ CAST(YEAR(GETDATE()) AS CHAR(4))
	+ '-'
	+ CAST(MONTH(GETDATE()) AS CHAR(2))
	+ '-'
	+ CAST(DAY(GETDATE()) AS CHAR(2))
	+ '.txt' AS DynamicFileName
GO</pre>
<p><strong>Result</strong><a href="http://zlika.org/wp-content/uploads/2010/02/YEAR_MONTH_DAY.png" rel="lightbox[227]"><br />
</a><a href="http://zlika.org/wp-content/uploads/2010/02/YEAR_MONTH_DAY.png" rel="lightbox[227]"><img class="size-full wp-image-233" title="YEAR(), MONTH(), DAY()" src="http://zlika.org/wp-content/uploads/2010/02/YEAR_MONTH_DAY.png" alt="YEAR(), MONTH(), DAY()" /></a></p>
<p>The result is strange, because <a title="MS SQL Server 2008 - Books Online" href="http://msdn.microsoft.com/en-us/library/ms186724.aspx#DateandTimeFunctions" target="_blank">the return data type of those functions is integer</a>. To fix this, we need to add leading zeros in front of days, months, hours, minutes and seconds.</p>
<pre class="brush: sql;">-- Add leading zeroes
DECLARE
	@Day AS CHAR(2)
	, @Month AS CHAR(2)
	, @Year AS CHAR(4)
	, @Hour AS CHAR(2)
	, @Minute AS CHAR(2)
	, @Second AS CHAR (2)
	, @NewFileName AS CHAR(26)

SELECT @Day = DATEPART(DD, GETDATE())
SELECT @Day = RIGHT('0', 2 - LEN(@Day)) + @Day

SELECT @Month = DATEPART(MM, GETDATE())
SELECT @Month = RIGHT('0', 2 - LEN(@Month)) + @Month

SELECT @Year = DATEPART (YY, GETDATE())

SELECT @Hour = DATEPART(HH, GETDATE())
SELECT @Hour = RIGHT('0', 2 - LEN (@Hour)) + @Hour

SELECT @Minute = DATENAME(MI, GETDATE())
SELECT @Minute = RIGHT('0', 2 - LEN (@Minute)) + @Minute

SELECT @Second = DATEPART(SS, GETDATE())
SELECT @Second = RIGHT('0', 2 - LEN (@Second)) + @Second

SELECT @NewFileName = 'Test_' + @Year + '-' + @Month + '-' + @Day + '_' + @Hour + @Minute + @Second + '.txt'

SELECT @NewFileName AS DynamicFileName
GO</pre>
<p><strong>Result</strong><br />
<a href="http://zlika.org/wp-content/uploads/2010/02/AddLeadingZeros.png" rel="lightbox[227]"><img class="size-full wp-image-233" title="AddLeadingZeros" src="http://zlika.org/wp-content/uploads/2010/02/AddLeadingZeros.png" alt="Add leading zeros" /></a></p>
<p>The best way is to convert the result of GETDATE() function to CHAR and extract the different parts of it with the SUBSTRING() function.</p>
<pre class="brush: sql;">-- SUBSTRING()
DECLARE
	@Date CHAR(20) = CONVERT(CHAR(10), GETDATE(), 112) -- yyyymmdd
	, @Time CHAR(20) = CONVERT(CHAR(10), GETDATE(), 108) -- hh:mi:ss

SELECT
	'Test_'
	+ SUBSTRING(@Date, 1, 4) -- Year
	+ '-'
	+ SUBSTRING(@Date, 5, 2) -- Month
	+ '-'
	+ SUBSTRING(@Date, 7, 2) -- Day
	+ '_'
	+ SUBSTRING(@Time, 1, 2) -- Hour
	+ SUBSTRING(@Time, 4, 2) -- Minute
	+ SUBSTRING(@Time, 7, 2) -- Second
	+ '.txt' AS DynamicFileName
GO</pre>
<p><strong>Result</strong><br />
<a href="http://zlika.org/wp-content/uploads/2010/02/SUBSTRING.png" rel="lightbox[227]"><img class="size-full wp-image-234" title="SUBSTRING" src="http://zlika.org/wp-content/uploads/2010/02/SUBSTRING.png" alt="SUBSTRING()" /></a></p>
<p>My ex-colleague needs the dynamic filename to generate reports with SSIS. I&#8217;m gonna show her soon how to create simple project and the way for the same manipulation of the date in SSIS.</p>
<p>Félicitations</p>
<hr size="1" noshade>
<p style="font-family = verdana, tahoma, arial, sans-serif; font-size: 10px;">
<a title="Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server" href="http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/"><b>Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server</b></a> <br />
Author: zlika (Peter Lalovsky), Category: <a href="http://zlika.org/index.php/category/it/" title="View all posts in IT" rel="category tag">IT</a>, <a href="http://zlika.org/index.php/category/it/ms-sql-server/" title="View all posts in MS SQL Server" rel="category tag">MS SQL Server</a>, <a href="http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/#comments">%%comment_text%%</a>

<br />

Add to:
<a title="Share on Delicious" href="http://del.icio.us/post?url=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/&title=Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server">Delicious</a> | 
<a title="Share on Facebook" href="http://www.facebook.com/sharer.php?u=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/&t=Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server">Facebook</a> | 
<a title="Share on Twitter" href="http://twitter.com/home?status=Currently reading http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/">Twitter</a> | <a title="Share on Live" href="http://favorites.live.com/quickadd.aspx?url=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/&title=Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server">Live</a> | 
<a title="Share on Reddit" href="http://reddit.com/submit?url=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/&title=Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server">Reddit</a> | 
<a title="Share on Technorati" href="http://www.technorati.com/faves?add=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/">Technorati</a> | 
<a title="Share on Digg" href="http://digg.com/submit?url=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/&title=Generate filename (Name_Date_Time.txt) for a report with Transact-SQL in Microsoft SQL Server">Digg</a>

<br />

Followers: <a href="http://www.technorati.com/search/http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/" title="Linking blogs to this article, on Technorati">Technorati</a> | <a href="http://www.google.com/blogsearch?hl=en&q=http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/" title="Linking blogs to this article, on Google">Google</a>

<br />

© 2010, <a href="http://zlika.org">zlika&#039;s</a> (<a href="http://zlika.org/index.php/feed/">RSS</a>)
</p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://zlika.org/index.php/2010/02/28/generate-filename-name_date_time-txt-for-a-report-with-transact-sql-in-microsoft-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

