﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Article Discussions / Article Discussions by Author / Discuss content posted by DASUN  / Drive Letter Finder / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 22 May 2013 06:37:14 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Drive Letter Finder</title><link>http://www.sqlservercentral.com/Forums/Topic817573-1217-1.aspx</link><description>A small point - VERY SMALL - is that [i][b]Available[/b][/i] is spelt incorrectly. Thought you might want to correct the article.</description><pubDate>Wed, 18 Nov 2009 03:29:08 GMT</pubDate><dc:creator>Gary Varga</dc:creator></item><item><title>RE: Drive Letter Finder</title><link>http://www.sqlservercentral.com/Forums/Topic817573-1217-1.aspx</link><description>I think this'll give you the same result with a lot less work:[code="sql"]declare @foo table (drive char(1),mbfree int)INSERT INTO @foo EXEC master..xp_fixeddrivesIF @@rowcount = 26 	SELECT '*' as driveELSE	SELECT TOP 1 drive FROM @foo ORDER BY drive[/code]Or to see all the details:[code="sql"]declare @foo table (drive char(1),mbfree int)INSERT INTO @foo EXEC master..xp_fixeddrivesSELECT * FROM @foo[/code]Warning; xp_fixeddrives IS undocumented</description><pubDate>Tue, 17 Nov 2009 16:33:00 GMT</pubDate><dc:creator>mstjean</dc:creator></item><item><title>Drive Letter Finder</title><link>http://www.sqlservercentral.com/Forums/Topic817573-1217-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/scripts/TSQL/68695/"&gt;Drive Letter Finder&lt;/A&gt;[/B]</description><pubDate>Wed, 11 Nov 2009 19:24:24 GMT</pubDate><dc:creator>darren.sunderland</dc:creator></item></channel></rss>