<?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>Jon White</title>
	<atom:link href="http://jonwhite.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonwhite.me</link>
	<description>Godzilla. Related. Turbulence.</description>
	<lastBuildDate>Fri, 11 Mar 2011 22:30:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>No SSIS?  No Problem. Create a csv File Using SQL</title>
		<link>http://jonwhite.me/2011/03/11/no-ssis-no-problem-create-a-csv-file-using-sql/</link>
		<comments>http://jonwhite.me/2011/03/11/no-ssis-no-problem-create-a-csv-file-using-sql/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 22:30:38 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://jonwhite.me/?p=19</guid>
		<description><![CDATA[Let me start by saying I never knew how much I would miss Sql Server Integration Services until I was asked to build a simple CSV export and FTP transfer [...]]]></description>
			<content:encoded><![CDATA[<p>Let me start by saying I never knew how much I would miss Sql Server Integration Services until I was asked to build a simple CSV export and FTP transfer package without it.  Something like this would take a matter of minutes to build in SSIS.  Unfortunately this is not an option for me at this time so I was forced to try to find another way to accomplish my task.  After a bit of Googling I stumbled across a great <a href="http://www.simple-talk.com/sql/database-administration/creating-csv-files-using-bcp-and-stored-procedures/" target="_blank">article over at simple-talk.com</a> that talks about using something called BCP along with a stored procedure (or table/view) to export data into a CSV file.</p>
<p>Here is the sample SQL:</p>
<p><code><br />
declare @sql varchar(8000)<br />
select @sql = 'bcp master..sysobjects out c:\bcp\sysobjects.txt -c -t, -T -S'+ @@servername<br />
exec master..xp_cmdshell @sql</code></p>
<p>This technique worked perfectly for me in that it allows me to build a stored procedure to export the specific data I want and then automate file creation by simply building a small executable file to execute this command.</p>
]]></content:encoded>
			<wfw:commentRss>http://jonwhite.me/2011/03/11/no-ssis-no-problem-create-a-csv-file-using-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That&#8217;s a Sticky Wicket!</title>
		<link>http://jonwhite.me/2011/03/07/thats-a-sticky-wicket/</link>
		<comments>http://jonwhite.me/2011/03/07/thats-a-sticky-wicket/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 04:45:48 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[cricket]]></category>

		<guid isPermaLink="false">http://jonwhite.me/?p=12</guid>
		<description><![CDATA[Apparently I missed my calling and should be betting on Cricket&#8230;99.6 percentile!  Nice!  I&#8217;m sure this won&#8217;t last but figured I&#8217;d document the moment.]]></description>
			<content:encoded><![CDATA[<p>Apparently I missed my calling and should be betting on Cricket&#8230;99.6 percentile!  Nice!  I&#8217;m sure this won&#8217;t last but figured I&#8217;d document the moment.</p>
<p><a rel="prettyPhoto" href="http://jonwhite.me/wp-content/uploads/2011/03/Screen-shot-2011-03-07-at-11.41.51-PM.png"><img class="alignnone size-medium wp-image-13" title="espnCricket" src="http://jonwhite.me/wp-content/uploads/2011/03/Screen-shot-2011-03-07-at-11.41.51-PM-300x41.png" alt="cricketpickem" width="300" height="41" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jonwhite.me/2011/03/07/thats-a-sticky-wicket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

