<?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>belle's sql musings</title>
	<atom:link href="http://www.sqlmusings.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sqlmusings.com</link>
	<description>ramblings, discoveries, tutorials on sql server and other database stuff</description>
	<lastBuildDate>Sun, 07 Mar 2010 09:06:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Re-Post: SQL Server and PowerShell WebCasts</title>
		<link>http://www.sqlmusings.com/2010/02/27/re-post-sql-server-and-powershell-webcasts/</link>
		<comments>http://www.sqlmusings.com/2010/02/27/re-post-sql-server-and-powershell-webcasts/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 09:04:46 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SMO]]></category>
		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1296</guid>
		<description><![CDATA[I created a 2 part webcast on SQL Server and PowerShell last November/December, and I just wanted to re-post it in my site.
 SQL Server PowerShell: Part I 
Posted on November 25, 2009

Overview: This video is part 1 of a 2 part video series that goes through PowerShell basics with demonstrations on how to use [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/08/20/vanpass-presentation-and-demo-files-on-sql-server-and-powershell/' rel='bookmark' title='Permanent Link: VANPASS Presentation and Demo Files on SQL Server and PowerShell'>VANPASS Presentation and Demo Files on SQL Server and PowerShell</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/05/30/practical-powershell-video-series/' rel='bookmark' title='Permanent Link: Practical PowerShell Video Series'>Practical PowerShell Video Series</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/06/04/sql-server-powershell-search-for-sql-server-objects-using-powershell/' rel='bookmark' title='Permanent Link: SQL Server PowerShell : Search for SQL Server Objects Using PowerShell'>SQL Server PowerShell : Search for SQL Server Objects Using PowerShell</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/06/03/sql-server-powershell-how-to-audit-your-sql-server-instance-properties-using-powershell-and-smo/' rel='bookmark' title='Permanent Link: SQL Server PowerShell : How to Audit Your SQL Server Instance Properties Using PowerShell and SMO'>SQL Server PowerShell : How to Audit Your SQL Server Instance Properties Using PowerShell and SMO</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2010/02/27/re-post-sql-server-and-powershell-webcasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refactor This: Runaway T-SQL to Print YYMMDD</title>
		<link>http://www.sqlmusings.com/2010/02/01/refactor-this-runaway-t-sql-to-print-yymmdd/</link>
		<comments>http://www.sqlmusings.com/2010/02/01/refactor-this-runaway-t-sql-to-print-yymmdd/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:04:12 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1196</guid>
		<description><![CDATA[Recently trying to debug some really cryptic T-SQL scripts.
Guess what this is trying to do? 


--

DECLARE @dt varchar(6)
SET @dt = RIGHT(CONVERT(varchar(4), YEAR(getdate())),2) + REPLICATE('0', 2 - LEN(CONVERT(varchar(2), MONTH(getdate())))) + CONVERT(varchar(2), MONTH(getdate())) + REPLICATE('0', 2 - LEN(CONVERT(varchar(2), DAY(getdate())))) + CONVERT(varchar(2), DAY(getdate()))

--

Answer:
It&#8217;s trying to print the current date in YYMMDD format.
Uhm, there&#8217;s a much better way to [...]

<p style="margin-top:25px"><strong>No related posts.</strong>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2010/02/01/refactor-this-runaway-t-sql-to-print-yymmdd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Becoming a DBA &#8211; the Right and Not-So-Right Reasons</title>
		<link>http://www.sqlmusings.com/2010/01/26/becoming-a-dba-the-right-and-not-so-right-reasons/</link>
		<comments>http://www.sqlmusings.com/2010/01/26/becoming-a-dba-the-right-and-not-so-right-reasons/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:34:37 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1174</guid>
		<description><![CDATA[ &#8220;Choose a job you love, and you will never have to work a day in your life&#8221;. &#8211; Confucius

It&#8217;s amazing how many, and how consistently, I get &#8220;reluctant would-be DBAs&#8221; in my class. I always do a quick survey or poll when the course starts where I  ask the students why they&#8217;re taking [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2008/12/03/this-is-why-i-teach/' rel='bookmark' title='Permanent Link: This Is Why I Teach'>This Is Why I Teach</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2010/01/22/ive-been-tagged-three-things-that-got-me-here/' rel='bookmark' title='Permanent Link: I&#8217;ve been tagged &#8211; Three Things That Got Me Here'>I&#8217;ve been tagged &#8211; Three Things That Got Me Here</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/04/03/looking-for-another-ninja-thats-ninja-talk-for-looking-a-good-developer/' rel='bookmark' title='Permanent Link: Looking for another Ninja (that is Ninja talk for looking for a good developer)'>Looking for another Ninja (that is Ninja talk for looking for a good developer)</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2010/01/26/becoming-a-dba-the-right-and-not-so-right-reasons/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve been tagged &#8211; Three Things That Got Me Here</title>
		<link>http://www.sqlmusings.com/2010/01/22/ive-been-tagged-three-things-that-got-me-here/</link>
		<comments>http://www.sqlmusings.com/2010/01/22/ive-been-tagged-three-things-that-got-me-here/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 07:06:23 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1143</guid>
		<description><![CDATA[Glenn Alan Berry (@GlennAlanBerry) tagged me, so here goes my version of &#8220;3 things that got me here&#8221; &#8230;
I wanted a job that didn&#8217;t involve hiking up the mountains in winter …
I took Geology in University (while working almost full time closing shifts at a local McDonald&#8217;s), spent a lot of years trying to get [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2010/01/26/becoming-a-dba-the-right-and-not-so-right-reasons/' rel='bookmark' title='Permanent Link: Becoming a DBA &#8211; the Right and Not-So-Right Reasons'>Becoming a DBA &#8211; the Right and Not-So-Right Reasons</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2010/01/22/ive-been-tagged-three-things-that-got-me-here/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>SQLPASS &#8211; Sessions, &#8220;tweeps&#8221;, swags, inspirations and lessons learned &#8211; looking forward to SQLPASS2010</title>
		<link>http://www.sqlmusings.com/2009/11/07/sqlpass-sessions-tweeps-swags-inspirations-and-lessons-learned-looking-forward-to-sqlpass2010/</link>
		<comments>http://www.sqlmusings.com/2009/11/07/sqlpass-sessions-tweeps-swags-inspirations-and-lessons-learned-looking-forward-to-sqlpass2010/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 04:57:55 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[musings]]></category>
		<category><![CDATA[SQLPASS]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1132</guid>
		<description><![CDATA[This is my SQLPASS :
Sessions
Day 0 &#8211; Pre-Conference 

Building a Microsoft Data Warehousing Platform by Brian Knight &#8211; excellent introduction to data cleansing, warehousing, and even data mining!

Day 1 

Keynote
Spotlight: SSRS in the Enterprise &#8211; How to Survive with a Smile (Wayne Snyder)
To Partition or Not To Partition &#8211; The Questions &#8230; and the answers [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/11/02/sqlpass-pre-conference-lessons-learned-building-a-microsoft-data-warehousing-platform-brian-knight/' rel='bookmark' title='Permanent Link: SQLPASS Pre-Conference Lessons Learned &#8211; Building a Microsoft Data Warehousing Platform (Brian Knight)'>SQLPASS Pre-Conference Lessons Learned &#8211; Building a Microsoft Data Warehousing Platform (Brian Knight)</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/06/06/my-sql-server-and-twitter-hero-is-brento/' rel='bookmark' title='Permanent Link: My SQL Server &#8211; and Twitter &#8211; Hero is BrentO'>My SQL Server &#8211; and Twitter &#8211; Hero is BrentO</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/08/oops-you-can-comment-now-thanks-brento/' rel='bookmark' title='Permanent Link: Oops, you can comment now. Thanks BrentO!'>Oops, you can comment now. Thanks BrentO!</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/06/09/devteach-daynight-dinner-twitter-brag-bag-my-musings-for-the-da/' rel='bookmark' title='Permanent Link: DevTeach day, dinner, twitter, brag bag &#8211; my musings for the day'>DevTeach day, dinner, twitter, brag bag &#8211; my musings for the day</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/11/07/sqlpass-sessions-tweeps-swags-inspirations-and-lessons-learned-looking-forward-to-sqlpass2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLPASS Pre-Conference Lessons Learned &#8211; Building a Microsoft Data Warehousing Platform (Brian Knight)</title>
		<link>http://www.sqlmusings.com/2009/11/02/sqlpass-pre-conference-lessons-learned-building-a-microsoft-data-warehousing-platform-brian-knight/</link>
		<comments>http://www.sqlmusings.com/2009/11/02/sqlpass-pre-conference-lessons-learned-building-a-microsoft-data-warehousing-platform-brian-knight/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:12:29 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLPASS]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1115</guid>
		<description><![CDATA[I just finished the SQLPASS pre-conference from Brian Knight &#8211; Building a Microsoft Data Warehousing Platform, and I&#8217;m so pumped to do more BI! Reporting, Data Warehousing, Data Mining &#8211; all fun stuff.
In a gist, this is what we learned today (and it&#8217;s a lot of acronyms):
- SSIS, ETL
- SSAS
- Cubes, Data Warehouse
- Data Mining
- [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/11/07/sqlpass-sessions-tweeps-swags-inspirations-and-lessons-learned-looking-forward-to-sqlpass2010/' rel='bookmark' title='Permanent Link: SQLPASS &#8211; Sessions, &#8220;tweeps&#8221;, swags, inspirations and lessons learned &#8211; looking forward to SQLPASS2010'>SQLPASS &#8211; Sessions, &#8220;tweeps&#8221;, swags, inspirations and lessons learned &#8211; looking forward to SQLPASS2010</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/13/valid-sqlxml-xsd-data-types-and-sample-sql-server-xml-schemas/' rel='bookmark' title='Permanent Link: Valid SQLXML XSD Data Types, and Sample SQL Server XML Schemas'>Valid SQLXML XSD Data Types, and Sample SQL Server XML Schemas</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/09/22/issue-length-of-lob-data-to-be-replicated-exceeds-configured-maximum-65536/' rel='bookmark' title='Permanent Link: Issue: Length of LOB data to be replicated exceeds configured maximum 65536'>Issue: Length of LOB data to be replicated exceeds configured maximum 65536</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/sqlxml-how-to-list-columns-that-have-the-xml-data-type/' rel='bookmark' title='Permanent Link: SQLXML : How to List Columns That Have the XML Data Type'>SQLXML : How to List Columns That Have the XML Data Type</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/11/02/sqlpass-pre-conference-lessons-learned-building-a-microsoft-data-warehousing-platform-brian-knight/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resizing your VMWare Disk in 12 Steps</title>
		<link>http://www.sqlmusings.com/2009/10/23/resizing-your-vmware-disk-in-12-steps/</link>
		<comments>http://www.sqlmusings.com/2009/10/23/resizing-your-vmware-disk-in-12-steps/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 06:55:24 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1104</guid>
		<description><![CDATA[Every now and then I need to resize my VMWare Server disks.
The is the easiest and least troublesome way, from my experience, is to use GParted Live (Gnome Partition Editor)
Prep Work:
1. Download GParted (Gnome Partition Editor) Live (http://sourceforge.net/projects/gparted/files/gparted-live-stable/). It is an iso file that we will mount to our vm
2. Locate where your vmware-vdiskmanager.exe is. [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/09/18/step-by-step-guide-to-creating-a-sql-server-vm-using-vmware/' rel='bookmark' title='Permanent Link: Step by Step Guide to Creating a SQL Server VM Using VMWare'>Step by Step Guide to Creating a SQL Server VM Using VMWare</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/10/23/resizing-your-vmware-disk-in-12-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are Vendor Certifications Still Valuable?</title>
		<link>http://www.sqlmusings.com/2009/10/09/are-vendor-certifications-still-valuable/</link>
		<comments>http://www.sqlmusings.com/2009/10/09/are-vendor-certifications-still-valuable/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 17:56:43 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=1099</guid>
		<description><![CDATA[Are they?
I personally find them still valuable. Poured my thoughts into our company blog :
Black Ninja Software &#8211; Are Vendor Certifications Still Valuable?
How about you? What&#8217;s your take on it?


Related posts:Looking for another Ninja (that is Ninja talk for looking for a good developer) ...BlackNinja Posts: Invoking Javascript and Impersonating Users in SharePoint ...DevTeach/SQLTeach in [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/04/03/looking-for-another-ninja-thats-ninja-talk-for-looking-a-good-developer/' rel='bookmark' title='Permanent Link: Looking for another Ninja (that is Ninja talk for looking for a good developer)'>Looking for another Ninja (that is Ninja talk for looking for a good developer)</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/04/09/blackninja-posts-invoking-javascript-and-impersonating-users-in-sharepoint/' rel='bookmark' title='Permanent Link: BlackNinja Posts: Invoking Javascript and Impersonating Users in SharePoint'>BlackNinja Posts: Invoking Javascript and Impersonating Users in SharePoint</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/09/devteachsqlteach/' rel='bookmark' title='Permanent Link: DevTeach/SQLTeach in Vancouver 2009'>DevTeach/SQLTeach in Vancouver 2009</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/10/09/are-vendor-certifications-still-valuable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
