<?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; Scripts</title>
	<atom:link href="http://learnsqlwithbru.com/category/scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://learnsqlwithbru.com</link>
	<description>Bru Medishetty&#039;s SeekWell Blogs</description>
	<lastBuildDate>Tue, 10 Aug 2010 13:31:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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>5</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>Find Databases without recent full backups</title>
		<link>http://learnsqlwithbru.com/2010/04/12/find-databases-without-recent-full-backups/</link>
		<comments>http://learnsqlwithbru.com/2010/04/12/find-databases-without-recent-full-backups/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 04:00:38 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[DBA Tasks]]></category>
		<category><![CDATA[Monitoring]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=744</guid>
		<description><![CDATA[One of the important tasks a SQL Server DBA does is database backup. While maintaining the backups of the important database is important, the need to monitor that the exists a valid Full backups for the databases is equally important. This blog will try to explain how to find the list of databases which do]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/04/12/find-databases-without-recent-full-backups/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SQL Server Backup File info using T-SQL Query</title>
		<link>http://learnsqlwithbru.com/2010/04/06/sql-server-backup-file-info-using-t-sql-query/</link>
		<comments>http://learnsqlwithbru.com/2010/04/06/sql-server-backup-file-info-using-t-sql-query/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 04:00:01 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[MSDB]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=692</guid>
		<description><![CDATA[Few days back, I was asked this question. Using T-SQL is there a way to find the backup details about a database? Including physical location of the database where the backup of a particular database was performed. I did recollect that I wrote such a T-SQL query sometime back to find the backup locations of]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/04/06/sql-server-backup-file-info-using-t-sql-query/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Find Transaction Log Space Used</title>
		<link>http://learnsqlwithbru.com/2010/03/31/find-transaction-log-space-used/</link>
		<comments>http://learnsqlwithbru.com/2010/03/31/find-transaction-log-space-used/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 04:00:41 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[DBCC SQLPERF (LOGSPACE)]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[Transaction Logs]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=659</guid>
		<description><![CDATA[To query the space used by the transaction logs use the command, use DBCC SQLPERF(LOGSPACE). The command displays the Database Name, Log Size in Mega Bytes, the % of  log file used, remember the value is not the size it is the percentage used from the actual space of the log files. The results displayed]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/03/31/find-transaction-log-space-used/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to know the SQL Server Version</title>
		<link>http://learnsqlwithbru.com/2010/03/19/how-to-know-the-sql-server-version/</link>
		<comments>http://learnsqlwithbru.com/2010/03/19/how-to-know-the-sql-server-version/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 04:00:26 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=556</guid>
		<description><![CDATA[In order to know the SQL Server and Edition details you would be possibly looking at the SQL Server properties and find out the details. Occasionally it might be needed to check the same as part of a job / or a script, you need to query the SQL Server for this info. In order]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/03/19/how-to-know-the-sql-server-version/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Concatenating Strings to NULL values</title>
		<link>http://learnsqlwithbru.com/2010/01/19/concatenating-strings-to-null-values/</link>
		<comments>http://learnsqlwithbru.com/2010/01/19/concatenating-strings-to-null-values/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 16:47:10 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[NULL]]></category>
		<category><![CDATA[Strings]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=146</guid>
		<description><![CDATA[We recently ran into this situation of reports containing nothing but blank spaces. When investigated the reason was that the String concatenation statement was written as a general statement. There is nothing wrong in the statement, it works fine when the variables have a value but does not work when one of the variables is NULL. The &#8220;SELECT]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2010/01/19/concatenating-strings-to-null-values/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
