<?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>Learn SQL With Bru</title>
	<atom:link href="http://learnsqlwithbru.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://learnsqlwithbru.com</link>
	<description>Bru Medishetty&#039;s SeekWell Blogs</description>
	<lastBuildDate>Wed, 10 Mar 2010 19:00:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finding Shared Drives on a Cluster</title>
		<link>http://learnsqlwithbru.com/2010/03/10/finding-shared-drives-on-a-cluster/</link>
		<comments>http://learnsqlwithbru.com/2010/03/10/finding-shared-drives-on-a-cluster/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 05:00:50 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[Dynamic Mangement Views]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=168</guid>
		<description><![CDATA[When working in a clustered environment, it is a common practice to open the Cluster Administrator to look at the shared drives for the SQL Server instance.  This can be performed from one of the participating nodes in the cluster. Using SQL Server Dynamic Management View sys.dm_io_cluster_shared_drives we can query and retrieve the shared drives <a href="http://learnsqlwithbru.com/2010/03/10/finding-shared-drives-on-a-cluster/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/03/10/finding-shared-drives-on-a-cluster/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scripting database objects in SQL Server 2008</title>
		<link>http://learnsqlwithbru.com/2010/03/07/scripting-database-objects-in-sql-server-2008/</link>
		<comments>http://learnsqlwithbru.com/2010/03/07/scripting-database-objects-in-sql-server-2008/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 05:00:16 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=455</guid>
		<description><![CDATA[In this article, we would go through the steps to script the objects in a database using SQL Server 2008. This might be required when we need to setup a database similar in structure to your existing database and move the data at a later time. Situations like setting up a new database on another <a href="http://learnsqlwithbru.com/2010/03/07/scripting-database-objects-in-sql-server-2008/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/03/07/scripting-database-objects-in-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Finding the Fullness of all Database files</title>
		<link>http://learnsqlwithbru.com/2010/03/04/finding-the-fullness-of-all-database-files/</link>
		<comments>http://learnsqlwithbru.com/2010/03/04/finding-the-fullness-of-all-database-files/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 05:00:11 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=439</guid>
		<description><![CDATA[One of the common things a Database Admin would need to monitor is the size of the database files and along with that monitor the level to which those files are full, so as to plan for the future growth of the database or to be proactive in allocating additional data files if the existing <a href="http://learnsqlwithbru.com/2010/03/04/finding-the-fullness-of-all-database-files/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/03/04/finding-the-fullness-of-all-database-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming database and database objects using T-SQL</title>
		<link>http://learnsqlwithbru.com/2010/03/01/renaming-database-and-database-objects-using-t-sql/</link>
		<comments>http://learnsqlwithbru.com/2010/03/01/renaming-database-and-database-objects-using-t-sql/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 05:00:09 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[System Stored Procedures]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=277</guid>
		<description><![CDATA[With increased usage of SQL Server Management Studio for carrying out most of the day to day tasks, performing many activities is easier to learn and to master those steps from the Management Studio.
This is not always a possibility, assume a task needs to be done at certain specific time or after an event / step / process <a href="http://learnsqlwithbru.com/2010/03/01/renaming-database-and-database-objects-using-t-sql/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/03/01/renaming-database-and-database-objects-using-t-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the nodes in a Failover Cluster</title>
		<link>http://learnsqlwithbru.com/2010/02/18/finding-the-nodes-in-a-failover-cluster/</link>
		<comments>http://learnsqlwithbru.com/2010/02/18/finding-the-nodes-in-a-failover-cluster/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 05:00:51 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Dynamic Mangement Views]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=380</guid>
		<description><![CDATA[I was recently asked by a friend, how to find the names of the nodes that are participating in a failover cluster.
The Dynamic Management View sys.dm_os_cluster_nodes will give this information. The following script will return the list of Node names in the cluster.

Note that the query was run on a 3 Node cluster, so the <a href="http://learnsqlwithbru.com/2010/02/18/finding-the-nodes-in-a-failover-cluster/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/02/18/finding-the-nodes-in-a-failover-cluster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My First Article in MSSQLTips</title>
		<link>http://learnsqlwithbru.com/2010/02/11/my-first-article-in-mssqltips/</link>
		<comments>http://learnsqlwithbru.com/2010/02/11/my-first-article-in-mssqltips/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 13:00:56 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[MSSQLTips]]></category>
		<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=347</guid>
		<description><![CDATA[Today is a special day for me. An article that I submitted is published in MSSQLTips.  The article looks into the Index fill factor settings and what is a good value for a given scenario.
Continue to read the article Understanding SQL Server Index Fill Factor Setting.
&#8211; Bru Medishetty
]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/02/11/my-first-article-in-mssqltips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the right terminology.</title>
		<link>http://learnsqlwithbru.com/2010/02/10/using-the-right-terminology/</link>
		<comments>http://learnsqlwithbru.com/2010/02/10/using-the-right-terminology/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 05:00:16 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=311</guid>
		<description><![CDATA[I am a regular visitor to SQL Server Forums at SQLServerCentral and see some users posting their question, issues and problems. Some of these questions tends to confuse even the seasoned campaigners and at the same time would not give the complete picture of what is being asked. I saw a user posting a question <a href="http://learnsqlwithbru.com/2010/02/10/using-the-right-terminology/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/02/10/using-the-right-terminology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What components do I need in SQL Server ?</title>
		<link>http://learnsqlwithbru.com/2010/02/04/what-components-do-i-need-in-sql-server/</link>
		<comments>http://learnsqlwithbru.com/2010/02/04/what-components-do-i-need-in-sql-server/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 05:00:30 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Multiple Instances]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=270</guid>
		<description><![CDATA[I was asked the following questions by many people personally and see this appear over forums repeatedly.
When I install an additional instance of SQL Server on the same machine, what options do I need to select ? What components need to be installed to use basic SQL Server while learning (well sometimes at the job also).
Well <a href="http://learnsqlwithbru.com/2010/02/04/what-components-do-i-need-in-sql-server/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/02/04/what-components-do-i-need-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Certification Exam &#8211; Second Shot Free offer is back !</title>
		<link>http://learnsqlwithbru.com/2010/01/28/certification-exam-second-shot-free-offer-is-back/</link>
		<comments>http://learnsqlwithbru.com/2010/01/28/certification-exam-second-shot-free-offer-is-back/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:00:31 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Certification]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Multiple Instances]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=265</guid>
		<description><![CDATA[One of the popular offers I always liked while pursuing a Microsoft Certification is once again back. The second shot offer gives the candidate an opportunity to have a second shot of the same exam at no additional cost (if the candidate could not successfully pass in the first attempt).
I am planning to take the MCITP <a href="http://learnsqlwithbru.com/2010/01/28/certification-exam-second-shot-free-offer-is-back/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/01/28/certification-exam-second-shot-free-offer-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download SQL Server Sample Databases</title>
		<link>http://learnsqlwithbru.com/2010/01/24/download-sql-server-sample-databases/</link>
		<comments>http://learnsqlwithbru.com/2010/01/24/download-sql-server-sample-databases/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 05:00:40 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Sample Databases]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=247</guid>
		<description><![CDATA[When working with SQL Server most of the times the example queries that are provided in articles are based on the sample databases available in SQL Server 2005 / 2008.
If you have missed installing the Sample Databases when installing SQL Server, all you need to do is download the sample databases that are available at <a href="http://learnsqlwithbru.com/2010/01/24/download-sql-server-sample-databases/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/01/24/download-sql-server-sample-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
