<?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 &#187; SQL Server</title>
	<atom:link href="http://learnsqlwithbru.com/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://learnsqlwithbru.com</link>
	<description>Bru Medishetty&#039;s SeekWell Blogs</description>
	<lastBuildDate>Sat, 17 Jul 2010 17:10:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Changing SQL Server Authentication Mode</title>
		<link>http://learnsqlwithbru.com/2010/07/17/changing-sql-server-authentication-mode/</link>
		<comments>http://learnsqlwithbru.com/2010/07/17/changing-sql-server-authentication-mode/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 04:00:45 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Authentication]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=791</guid>
		<description><![CDATA[This article explains the procedure, how to change the authentication mode in SQL Server. Authentication mode of a SQL Server instance is the deciding factor how the SQL Server authenticates the users and logins. SQL Server supports 2 authentication modes: Windows Authentication Mode &#38; SQL Server and Windows Authentication Mode. There are advantages and dis-advantages in choosing these authentication modes,]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/07/17/changing-sql-server-authentication-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WHERE Clause in SQL Server Query</title>
		<link>http://learnsqlwithbru.com/2010/06/25/using-where-clause-in-sql-server-query/</link>
		<comments>http://learnsqlwithbru.com/2010/06/25/using-where-clause-in-sql-server-query/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 04:00:01 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Development]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=959</guid>
		<description><![CDATA[In this blog we shall look into the usage of WHERE clause in SQL Server. WHERE clause can be used in Select, Update, Delete statements to filter the rows being affected by the query. In fact it can be used inside an Insert statement too which has a Select statement. WHERE clause ensures the data is filtered]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/06/25/using-where-clause-in-sql-server-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Log Size for all Databases in SQL Server</title>
		<link>http://learnsqlwithbru.com/2010/06/04/finding-log-size-for-all-databases-in-sql-server/</link>
		<comments>http://learnsqlwithbru.com/2010/06/04/finding-log-size-for-all-databases-in-sql-server/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 04:00:37 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Transaction Logs]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=667</guid>
		<description><![CDATA[Monitoring the size of Transaction Log files is one of those important tasks for a SQL Server Database Administrator. I monitor regularly in order to ensure that my database log files do not grow tremendously in size and potentially run out of space. The script in this article will give the list of Databases and their]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/06/04/finding-log-size-for-all-databases-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Troubleshoot SQL Server Connection Problems</title>
		<link>http://learnsqlwithbru.com/2010/06/02/how-to-troubleshoot-sql-server-connection-problems/</link>
		<comments>http://learnsqlwithbru.com/2010/06/02/how-to-troubleshoot-sql-server-connection-problems/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 04:00:48 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Administration]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Connection Issues]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=723</guid>
		<description><![CDATA[In this blog we shall take a look at the steps to troubleshoot connection problems in SQL Sever. We need to keep in mind, there are lot of things that might be part of such an issue and also we need to consider which user or what application is reporting this connection problems. The exact cause of the connection failure]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/06/02/how-to-troubleshoot-sql-server-connection-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropping a Column from a table using T-SQL &#8211; SQL Server</title>
		<link>http://learnsqlwithbru.com/2010/05/30/dropping-a-column-from-a-table-using-t-sql-sql-server/</link>
		<comments>http://learnsqlwithbru.com/2010/05/30/dropping-a-column-from-a-table-using-t-sql-sql-server/#comments</comments>
		<pubDate>Sun, 30 May 2010 04:00:57 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Development]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Alter Table]]></category>
		<category><![CDATA[Drop Columns]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=1126</guid>
		<description><![CDATA[This blog explains how to drop a column from a table using T-SQL query. It might be easy to do it from SSMS, on the other side, it is not always convenient to do it from SSMS. When you have to repeat the task of dropping additional columns at a later time, you will have]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/05/30/dropping-a-column-from-a-table-using-t-sql-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Primary Key in a SQL Server table</title>
		<link>http://learnsqlwithbru.com/2010/05/24/creating-primary-key-in-a-sql-server-table/</link>
		<comments>http://learnsqlwithbru.com/2010/05/24/creating-primary-key-in-a-sql-server-table/#comments</comments>
		<pubDate>Mon, 24 May 2010 04:00:04 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Development]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Constraints]]></category>
		<category><![CDATA[Primary Key]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=1067</guid>
		<description><![CDATA[In this blog we shall learn how to create a Primary Key on a table using T-SQL. A Primary Key on a table can be either created at the time of creating the table or after the table is created by altering the table and adding the Primary Key Constraint.  This blog covers the first]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/05/24/creating-primary-key-in-a-sql-server-table/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SQL Server fails to Start-Troubleshooting the failure</title>
		<link>http://learnsqlwithbru.com/2010/05/19/sql-server-fails-to-start-troubleshooting-the-failure/</link>
		<comments>http://learnsqlwithbru.com/2010/05/19/sql-server-fails-to-start-troubleshooting-the-failure/#comments</comments>
		<pubDate>Wed, 19 May 2010 04:00:55 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Administration]]></category>
		<category><![CDATA[Error Logs]]></category>
		<category><![CDATA[SQL Server Errors]]></category>
		<category><![CDATA[SQL Startup Problems]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=728</guid>
		<description><![CDATA[Many times I see people asking in forums about SQL Server not started and how to troubleshoot the reasons for the failure to start the SQL Server. This video explains the steps to troubleshoot the failures and find the error of a SQL Server startup failure.  Comments / feedback will be highly appreciated. –Bru Medishetty]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/05/19/sql-server-fails-to-start-troubleshooting-the-failure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DB_NAME() System Function in SQL Server</title>
		<link>http://learnsqlwithbru.com/2010/05/17/db_name-system-function-in-sql-server/</link>
		<comments>http://learnsqlwithbru.com/2010/05/17/db_name-system-function-in-sql-server/#comments</comments>
		<pubDate>Mon, 17 May 2010 04:00:01 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[System Functions]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=972</guid>
		<description><![CDATA[In this blog, let&#8217;s take a look at a SQL Server System function, DB_NAME() . This function is pretty handy when writing scripts that need you to identify the the Database name based on Database ID. DB_NAME() DB_NAME() function accepts an optional integer parameter (database_id) and returns the database name of that database_id, if no parameter is mentioned it returns the]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/05/17/db_name-system-function-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieving data from a Database Snapshots in SQL Server</title>
		<link>http://learnsqlwithbru.com/2010/05/10/retrieving-data-from-a-database-snapshots-in-sql-server/</link>
		<comments>http://learnsqlwithbru.com/2010/05/10/retrieving-data-from-a-database-snapshots-in-sql-server/#comments</comments>
		<pubDate>Mon, 10 May 2010 04:00:24 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[snapshots]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=720</guid>
		<description><![CDATA[I wrote a blog earlier, on Database Snapshots which explained about Database Snapshots, steps to create Database Snapshots and some points to remember when working with them. Before continuing reading this blog, I would recommend you read that blog here&#8230; Introduction to Database Snapshots in SQL Server In this blog we shall look at a simple]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/05/10/retrieving-data-from-a-database-snapshots-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Trace Template in SQL Server Profiler</title>
		<link>http://learnsqlwithbru.com/2010/05/03/creating-a-trace-template-in-sql-server-profiler/</link>
		<comments>http://learnsqlwithbru.com/2010/05/03/creating-a-trace-template-in-sql-server-profiler/#comments</comments>
		<pubDate>Mon, 03 May 2010 04:00:00 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[MSSQLTips]]></category>
		<category><![CDATA[Profiler]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=953</guid>
		<description><![CDATA[I recently wrote an article for MSSQLTips on this topic of creating a trace template in Profiler. SQL users who know about the profiler tool do not need what are the benefits of profiler. Read the tip on MSSQLTips here &#8230; Creating a Trace Template in SQL Server Profiler –Bru Medishetty]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/05/03/creating-a-trace-template-in-sql-server-profiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
