<?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>Bala Singam &#187; SQL server Basics</title>
	<atom:link href="http://balasingam.com/category/sql-server/feed" rel="self" type="application/rss+xml" />
	<link>http://balasingam.com</link>
	<description>Just another developer</description>
	<lastBuildDate>Fri, 27 Aug 2010 15:17:50 +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>Get list of view that uses certain column name</title>
		<link>http://balasingam.com/sql-server/get-list-of-view-that-uses-certain-column-name</link>
		<comments>http://balasingam.com/sql-server/get-list-of-view-that-uses-certain-column-name#comments</comments>
		<pubDate>Sun, 19 Jul 2009 13:36:15 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server basic]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=68</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. I was looking a query that tell me a list of view using certain view from a table, and found [...]]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/get-list-of-view-that-uses-certain-column-name/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to shrink db log file</title>
		<link>http://balasingam.com/sql-server/how-to-shrink-db-log-file</link>
		<comments>http://balasingam.com/sql-server/how-to-shrink-db-log-file#comments</comments>
		<pubDate>Sat, 18 Jul 2009 13:32:49 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[shrink log file]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=67</guid>
		<description><![CDATA[I got this code snippet from my collegue , hope this can be helpful for others too declare @dbname nvarchar(255) set @dbname = 'databasename' backup log @dbname with truncate_only DBCC SHRINKDATABASE (@dbname, 0) addthis_url = 'http%3A%2F%2Fbalasingam.com%2Fsql-server%2Fhow-to-shrink-db-log-file'; addthis_title = 'How+to+shrink+db+log+file'; addthis_pub = 'balasingam';]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/how-to-shrink-db-log-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update top N record in SQL Server</title>
		<link>http://balasingam.com/sql-server/update-top-n-record-in-sql-server</link>
		<comments>http://balasingam.com/sql-server/update-top-n-record-in-sql-server#comments</comments>
		<pubDate>Mon, 08 Jun 2009 16:12:12 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[update top N]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=66</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. SQL statement to update top N records update daily_sales set is_calc='Y' from daily_sales inner join (select top 100 * from [...]]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/update-top-n-record-in-sql-server/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SQL &#8211; delete from join</title>
		<link>http://balasingam.com/sql-server/sql-delete-from-join</link>
		<comments>http://balasingam.com/sql-server/sql-delete-from-join#comments</comments>
		<pubDate>Sun, 07 Jun 2009 16:09:07 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[delete from join]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=65</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. Simple statement to delete record a table with condition from other related table. delete prod from excp_amended_daily_sales_deposits prod inner join [...]]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/sql-delete-from-join/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQL to check SQL Server version</title>
		<link>http://balasingam.com/aspnet/sql-to-check-sql-server-version</link>
		<comments>http://balasingam.com/aspnet/sql-to-check-sql-server-version#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:20:05 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[ASP.Net (2.0 & 3.5)]]></category>
		<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=64</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition') addthis_url = 'http%3A%2F%2Fbalasingam.com%2Faspnet%2Fsql-to-check-sql-server-version'; addthis_title = 'SQL+to+check+SQL+Server+version'; addthis_pub = 'balasingam';]]></description>
		<wfw:commentRss>http://balasingam.com/aspnet/sql-to-check-sql-server-version/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Basic #3 : T-SQL Database back up script</title>
		<link>http://balasingam.com/sql-server/sql-basic-3-t-sql-database-back-up-script</link>
		<comments>http://balasingam.com/sql-server/sql-basic-3-t-sql-database-back-up-script#comments</comments>
		<pubDate>Fri, 27 Feb 2009 16:39:14 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[back up]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[Transact-SQL]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=55</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. Yesterday I been requested by one of our client to write a database back up script so that they can [...]]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/sql-basic-3-t-sql-database-back-up-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Basic #2 : How to update a table with values from another table</title>
		<link>http://balasingam.com/sql-server/sql-basic-2-how-to-update-a-table-with-values-from-another-table</link>
		<comments>http://balasingam.com/sql-server/sql-basic-2-how-to-update-a-table-with-values-from-another-table#comments</comments>
		<pubDate>Sun, 25 Jan 2009 07:02:55 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[sql basic]]></category>
		<category><![CDATA[sql programming]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[update statement]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=50</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. Update statement one of most common statement in developers daily routine but sometimes you will come across situation where you [...]]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/sql-basic-2-how-to-update-a-table-with-values-from-another-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Basic #1 : How to get date value in SQL query?</title>
		<link>http://balasingam.com/sql-server/how-to-get-date-value-in-sql-query</link>
		<comments>http://balasingam.com/sql-server/how-to-get-date-value-in-sql-query#comments</comments>
		<pubDate>Thu, 14 Aug 2008 03:33:14 +0000</pubDate>
		<dc:creator>BALA SINGAM</dc:creator>
				<category><![CDATA[SQL server Basics]]></category>
		<category><![CDATA[date part]]></category>
		<category><![CDATA[get day]]></category>
		<category><![CDATA[get month]]></category>
		<category><![CDATA[get year]]></category>
		<category><![CDATA[getDate]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[Transact-SQL]]></category>

		<guid isPermaLink="false">http://balasingam.com/?p=12</guid>
		<description><![CDATA[Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others. This small tutorial is to show how to get particular date part of from a date value field in SQL [...]]]></description>
		<wfw:commentRss>http://balasingam.com/sql-server/how-to-get-date-value-in-sql-query/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
