<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>HP's Blog</title>
	<atom:link href="http://hspinfo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hspinfo.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 Sep 2009 05:22:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='hspinfo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/67184579db3ea2adda23fe861edf480a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>HP's Blog</title>
		<link>http://hspinfo.wordpress.com</link>
	</image>
			<item>
		<title>How to use Union and Group By in MS SQL?</title>
		<link>http://hspinfo.wordpress.com/2009/09/16/how-to-use-union-and-group-by-in-ms-sql/</link>
		<comments>http://hspinfo.wordpress.com/2009/09/16/how-to-use-union-and-group-by-in-ms-sql/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 08:20:42 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[ms sql]]></category>
		<category><![CDATA[sql group by]]></category>
		<category><![CDATA[sql union]]></category>
		<category><![CDATA[sql union+group by]]></category>
		<category><![CDATA[union and group by]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=158</guid>
		<description><![CDATA[I found some problem using Union and Group By clause together, and I later realized that my technique of using these words together is not proper.
Most of the users are making the same mistakes when they deal with Union and Group By clause.
You can use like below:
SELECT x FROM (
SELECT x FROM table_A
UNION
SELECT x FROM [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=158&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/09/16/how-to-use-union-and-group-by-in-ms-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>How to disable Anchor tag in IE and Firefox?</title>
		<link>http://hspinfo.wordpress.com/2009/09/16/how-to-disable-anchor-tag-in-ie-and-firefox/</link>
		<comments>http://hspinfo.wordpress.com/2009/09/16/how-to-disable-anchor-tag-in-ie-and-firefox/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 07:34:22 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[disable a tag]]></category>
		<category><![CDATA[disable anchor]]></category>
		<category><![CDATA[disable anchor tag]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=152</guid>
		<description><![CDATA[I have searched many sites for to disable anchor and I know that IE supports &#8216;disable&#8217; property for anchor tag, however Firefox does not support this. So whenever you try with &#8216;disable&#8217; property of an anchor tag &#8220;&#60;a&#62;&#60;/a&#62;&#8221; you will get proper output in IE browser but not in Firefox browsers.
I have found a very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=152&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/09/16/how-to-disable-anchor-tag-in-ie-and-firefox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>How to get comma separated values from a database table without using cursor</title>
		<link>http://hspinfo.wordpress.com/2009/08/25/how-to-get-comma-separated-values-from-a-database-table-without-using-cursor/</link>
		<comments>http://hspinfo.wordpress.com/2009/08/25/how-to-get-comma-separated-values-from-a-database-table-without-using-cursor/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 06:06:34 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[get comma separated values]]></category>
		<category><![CDATA[get comma separated values from database table]]></category>
		<category><![CDATA[sql to get comma separated values]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=144</guid>
		<description><![CDATA[You can retrieve comma separated values from a database table using following type of SQL scripts
DECLARE @varList VARCHAR(1000)
SET @varList = SPACE(0)
SELECT @varList = @varList + ', ' + ContactName
FROM Customers
SELECT @varList
SELECT SUBSTRING(@varList, 3, 1000) 
You can see that the statement “SELECT @varList” will return list like “ , Maria Anders, Ana Trujillo, Antonio Moreno, Thomas [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=144&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/08/25/how-to-get-comma-separated-values-from-a-database-table-without-using-cursor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>Auto refresh the page and keep the viewstate of the page on each refresh</title>
		<link>http://hspinfo.wordpress.com/2009/08/21/auto-refresh-the-page-and-keep-the-viewstate-of-the-page-on-each-refresh/</link>
		<comments>http://hspinfo.wordpress.com/2009/08/21/auto-refresh-the-page-and-keep-the-viewstate-of-the-page-on-each-refresh/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 04:41:10 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[auto refresh page]]></category>
		<category><![CDATA[auto refresh page and keep viewstate]]></category>
		<category><![CDATA[auto-refresh page and persist viewstate of the page]]></category>
		<category><![CDATA[keep viewstate]]></category>
		<category><![CDATA[keep viewstate on every refresh]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=139</guid>
		<description><![CDATA[Today I am writing about how you can auto-refresh the page and still how you can manage the view-state of the page.
There may be requirement to fill up a long lasting form and this might take you a longer time to think or type. Now the general problem that occurs while filling up this kind [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=139&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/08/21/auto-refresh-the-page-and-keep-the-viewstate-of-the-page-on-each-refresh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>Funtion to split any string contant in Microsoft SQL Server</title>
		<link>http://hspinfo.wordpress.com/2009/08/08/funtion-to-split-any-string-contant-in-microsoft-sql-server/</link>
		<comments>http://hspinfo.wordpress.com/2009/08/08/funtion-to-split-any-string-contant-in-microsoft-sql-server/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:31:20 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Microsoft SQL split function]]></category>
		<category><![CDATA[MS SQL Split]]></category>
		<category><![CDATA[split function]]></category>
		<category><![CDATA[Split string constant in MS SQL]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=137</guid>
		<description><![CDATA[After a very long time I am posting this stuff&#8230;
I have noticed that on day to day activity with MS SQL, one requires to split any string constant every now and then and so I have decided to make a post of it.
Please create below SQL function into your database and then you can use [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=137&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/08/08/funtion-to-split-any-string-contant-in-microsoft-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>Network access for Distributed Transaction Manager (MSDTC) has been disabled</title>
		<link>http://hspinfo.wordpress.com/2009/03/24/network-access-for-distributed-transaction-manager-msdtc-has-been-disabled/</link>
		<comments>http://hspinfo.wordpress.com/2009/03/24/network-access-for-distributed-transaction-manager-msdtc-has-been-disabled/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 09:53:09 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Distributed Transaction Manager]]></category>
		<category><![CDATA[has been disabled]]></category>
		<category><![CDATA[MSDTC]]></category>
		<category><![CDATA[Network access]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=134</guid>
		<description><![CDATA[System.Transactions.TransactionManagerCommunicationException: Network access for Distributed Transaction Manager (MSDTC) has been disabled. Please enable DTC for network access in the security configuration for MSDTC using the Component Services Administrative tool. &#8212;&#62; System.Runtime.InteropServices.COMException (0&#215;8004D024): The transaction manager has disabled its support for remote/network transactions. (Exception from HRESULT: 0&#215;8004D024)
You can resolve this by following the steps below
Control Panel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=134&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/03/24/network-access-for-distributed-transaction-manager-msdtc-has-been-disabled/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>If I put alert() message then my javascript works fine otherwise script is not working</title>
		<link>http://hspinfo.wordpress.com/2009/01/12/if-i-put-alert-message-then-my-javascript-works-fine-otherwise-script-is-not-working/</link>
		<comments>http://hspinfo.wordpress.com/2009/01/12/if-i-put-alert-message-then-my-javascript-works-fine-otherwise-script-is-not-working/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 10:29:00 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[I put alert() message then my javascript works fine]]></category>
		<category><![CDATA[javascript is not working if i remove alert]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=124</guid>
		<description><![CDATA[When you deal with the javascript and when you are using any form elements of the page in the script then you better make sure that your whole page gets load first. The form elements that you are using into the script will only get used until the page loads completely.
I have faced one situation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=124&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2009/01/12/if-i-put-alert-message-then-my-javascript-works-fine-otherwise-script-is-not-working/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>javascript: Word Counter</title>
		<link>http://hspinfo.wordpress.com/2008/12/19/javascript-word-counter/</link>
		<comments>http://hspinfo.wordpress.com/2008/12/19/javascript-word-counter/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 03:37:21 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[javascript textbox character counter]]></category>
		<category><![CDATA[javascript word counter]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=120</guid>
		<description><![CDATA[Few months back I have posted one article on &#8220;Javascript: Maximum character validation and character counter for a textbox&#8221;, now here I have given one example on how to count words out of any textarea or textbox.
The counter of word will get incremented as you type in each word (one spell) into the textbox/textarea. This script [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=120&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2008/12/19/javascript-word-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>Merge two or more existing database tables/columns into one</title>
		<link>http://hspinfo.wordpress.com/2008/12/01/merge-two-or-more-existing-database-tablescolumns-into-one/</link>
		<comments>http://hspinfo.wordpress.com/2008/12/01/merge-two-or-more-existing-database-tablescolumns-into-one/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 06:44:07 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[merge database tables]]></category>
		<category><![CDATA[merge tables into temporary table]]></category>
		<category><![CDATA[Merge two or more database tables into one]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=114</guid>
		<description><![CDATA[I have two tables for e.g. tblStudents and tblSchools. Both are having different columns. For a reason I need to merge the two tables into one temporary table.
For example “tblStudents” contains the following design.



StudentID
FirstName
LastName
Address
DOB



Where as “tblSchools” contains the following design.



SchoolID
Name
Address
IsSecodarySchool



Now, you would like to merge this two table columns into one temporary table then you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=114&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2008/12/01/merge-two-or-more-existing-database-tablescolumns-into-one/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>LINQ .First(), .Last(), .Single() method throws an error if there are no records</title>
		<link>http://hspinfo.wordpress.com/2008/11/20/linq-first-last-single-method-throws-an-error-if-there-are-no-records/</link>
		<comments>http://hspinfo.wordpress.com/2008/11/20/linq-first-last-single-method-throws-an-error-if-there-are-no-records/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:46:52 +0000</pubDate>
		<dc:creator>hspinfo</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[First method throws error]]></category>
		<category><![CDATA[LINQ InvalidOperationException]]></category>
		<category><![CDATA[LINQ Last]]></category>
		<category><![CDATA[LINQ sequence contains no elements]]></category>
		<category><![CDATA[Single]]></category>

		<guid isPermaLink="false">http://hspinfo.wordpress.com/?p=112</guid>
		<description><![CDATA[So&#8230;.. I have used the .First() method in many of my LINQ queries to make sure that my query only returns one record.  I thought this would be a great way to insure isolation of one record.  Very similar to a TOP 1 statement in SQL.  However, there is an issue with this concept.  If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hspinfo.wordpress.com&blog=2488871&post=112&subd=hspinfo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://hspinfo.wordpress.com/2008/11/20/linq-first-last-single-method-throws-an-error-if-there-are-no-records/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6afaccce6a5a2b41e911423e842c7b8d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hspinfo</media:title>
		</media:content>
	</item>
	</channel>
</rss>