<?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>Blogger India &#187; database</title>
	<atom:link href="http://www.bloggerindia.in/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bloggerindia.in</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 17:15:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Graph Based Database</title>
		<link>http://www.bloggerindia.in/graph-based-database/</link>
		<comments>http://www.bloggerindia.in/graph-based-database/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 15:04:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://www.bloggerindia.in/?p=686</guid>
		<description><![CDATA[Neo Technology Commercializes Next Generation Graph Based Database]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/graph-based-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISO Country List with Abbreviations (SQL Table)</title>
		<link>http://www.bloggerindia.in/iso-country-list-with-abbreviations-sql-table/</link>
		<comments>http://www.bloggerindia.in/iso-country-list-with-abbreviations-sql-table/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 06:56:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bloggerindia.in/?p=529</guid>
		<description><![CDATA[This script will create and then populate a SQL table with a list of the names and ISO 3166 codes for countries in existence.]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/iso-country-list-with-abbreviations-sql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Date Formats</title>
		<link>http://www.bloggerindia.in/sql-server-date-formats/</link>
		<comments>http://www.bloggerindia.in/sql-server-date-formats/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 07:27:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://www.bloggerindia.in/sql-server-date-formats/</guid>
		<description><![CDATA[We are familiar with formatting dates inside SQL Server. The common approach is: convert (varchar, getdate(), 103) Here&#8217;s a summary of the different date formats that come standard in SQL Server as part of the CONVERT function. Date Format SQL Statement Sample Output Mon DD YYYY HH:MIAM (or PM) SELECT CONVERT(VARCHAR(20), GETDATE(), 100) Jan 1 [...]]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/sql-server-date-formats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find and Delete Duplicates value from  SQL table</title>
		<link>http://www.bloggerindia.in/find-and-delete-duplicates-value-from-sql-table/</link>
		<comments>http://www.bloggerindia.in/find-and-delete-duplicates-value-from-sql-table/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 06:50:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://www.bloggerindia.in/finding-and-delete-duplicates-value-from-sql-table/</guid>
		<description><![CDATA[Here a query for finding duplicates in a table. Suppose you want to find all ‘Coupon Code’  in a table that exist more than once SELECT Coupon_Code FROM Coupon GROUP BY Coupon_Code HAVING ( COUNT(Coupon_Code) &#62; 1 ) Delete duplicate value from table DELETE FROM Coupon GROUP BY Coupon_Code HAVING ( COUNT(Coupon_Code) &#62; 1 )]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/find-and-delete-duplicates-value-from-sql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 Management Studio &#8211; Saving changes is not permitted error.</title>
		<link>http://www.bloggerindia.in/sql-server-2008-management-studio-saving-changes-is-not-permitted-error/</link>
		<comments>http://www.bloggerindia.in/sql-server-2008-management-studio-saving-changes-is-not-permitted-error/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:38:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[SQL 2008]]></category>

		<guid isPermaLink="false">http://www.bloggerindia.in/index.php/sql-server-2008-management-studio-saving-changes-is-not-permitted-error/</guid>
		<description><![CDATA[Saving Changes in not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can’t be re-created or enabled the option Prevent saving changes that require the table to be re-created Once the table is created open the table in SQL-Server [...]]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/sql-server-2008-management-studio-saving-changes-is-not-permitted-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insert xml data into SQL Server</title>
		<link>http://www.bloggerindia.in/insert-xml-data-into-sql-server/</link>
		<comments>http://www.bloggerindia.in/insert-xml-data-into-sql-server/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 10:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://blog.deltrans.in/?p=85</guid>
		<description><![CDATA[Insert xml data into SQL Server]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/insert-xml-data-into-sql-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>T-SQL ALTER TABLE</title>
		<link>http://www.bloggerindia.in/t-sql-alter-table/</link>
		<comments>http://www.bloggerindia.in/t-sql-alter-table/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 07:02:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blog.deltrans.in/?p=65</guid>
		<description><![CDATA[T-SQL ALTER TABLE]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/t-sql-alter-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLite in C# Application</title>
		<link>http://www.bloggerindia.in/sqlite-in-c-application/</link>
		<comments>http://www.bloggerindia.in/sqlite-in-c-application/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 11:08:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.deltrans.in/?p=60</guid>
		<description><![CDATA[SQLite in C# Application
SQLite is a standalone database]]></description>
		<wfw:commentRss>http://www.bloggerindia.in/sqlite-in-c-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

