<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Manish Pansiniya&#039;s Blog</title>
	<atom:link href="https://maniish.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://maniish.wordpress.com</link>
	<description>.NET, C#, Javascript, ASP.NET and lots more...:)</description>
	<lastBuildDate>Wed, 01 Nov 2017 09:27:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='maniish.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Manish Pansiniya&#039;s Blog</title>
		<link>https://maniish.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://maniish.wordpress.com/osd.xml" title="Manish Pansiniya&#039;s Blog" />
	<atom:link rel='hub' href='https://maniish.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Finding Max values of column for all the tables for SQL Server</title>
		<link>https://maniish.wordpress.com/2017/11/01/finding-max-values-of-column-for-all-the-tables-for-sql-server/</link>
					<comments>https://maniish.wordpress.com/2017/11/01/finding-max-values-of-column-for-all-the-tables-for-sql-server/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Wed, 01 Nov 2017 09:27:46 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=614</guid>

					<description><![CDATA[&#160; DECLARE @DatabaseName VARCHAR(100) DECLARE @SchemaName VARCHAR(100) DECLARE @TableName VARCHAR(100) DECLARE @ColumnName VARCHAR(100) DECLARE @FullyQualifiedTableName VARCHAR(500) DECLARE @DataType VARCHAR(50) &#8211;Create Temp Table to Save Results IF OBJECT_ID(&#8216;tempdb..#Results&#8217;) IS NOT NULL &#160;&#160;&#160; DROP TABLE #Results CREATE TABLE #Results ( &#160;&#160;&#160; DatabaseName VARCHAR(100) &#160;&#160;&#160; ,SchemaName VARCHAR(100) &#160;&#160;&#160; ,TableName VARCHAR(100) &#160;&#160;&#160; ,ColumnName VARCHAR(100) &#160;&#160;&#160; ,ColumnDataType VARCHAR(50) &#160;&#160;&#160; ,MaxValue [&#8230;]]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2017/11/01/finding-max-values-of-column-for-all-the-tables-for-sql-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>221 See you later with sendgrid.net</title>
		<link>https://maniish.wordpress.com/2016/06/29/221-see-you-later-with-sendgrid-net/</link>
					<comments>https://maniish.wordpress.com/2016/06/29/221-see-you-later-with-sendgrid-net/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Wed, 29 Jun 2016 10:16:09 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=612</guid>

					<description><![CDATA[We are using sendgrid to send the emails to customers. Just yesterday, got the issues and when analyzed log, we could see 221 and 421 error with sendgrid. The issue was the slow connection with sendgrid and due to the same, it return the error. Checked ping and tracert to smtp.sendgrid.net and getting very slow [&#8230;]]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2016/06/29/221-see-you-later-with-sendgrid-net/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Temporary Table in SQL Server</title>
		<link>https://maniish.wordpress.com/2013/09/07/create-temporary-table-in-sql-server/</link>
					<comments>https://maniish.wordpress.com/2013/09/07/create-temporary-table-in-sql-server/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Sat, 07 Sep 2013 11:17:47 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=603</guid>

					<description><![CDATA[if you Wanted to create temporary tables without create and all stuff. Solutins: Select * into #TEMPTABLENAME from TABLE]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2013/09/07/create-temporary-table-in-sql-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>Magic Disk &#8211; Virtual Drive for ISO Mount</title>
		<link>https://maniish.wordpress.com/2013/06/23/magic-disk-virtual-drive-for-iso-mount/</link>
					<comments>https://maniish.wordpress.com/2013/06/23/magic-disk-virtual-drive-for-iso-mount/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Sun, 23 Jun 2013 14:59:29 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Mount ISO]]></category>
		<category><![CDATA[Virtual Drive]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=600</guid>

					<description><![CDATA[Just found alternative for Magic Disk &#8211; GBurner Virtual Drive &#8211;OSFMount]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2013/06/23/magic-disk-virtual-drive-for-iso-mount/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>550 Cannot receive from specified address : Unauthenticated senders not allowed in SendGrid</title>
		<link>https://maniish.wordpress.com/2013/06/22/550-cannot-receive-from-specified-address-unauthenticated-senders-not-allowed-in-sendgrid/</link>
					<comments>https://maniish.wordpress.com/2013/06/22/550-cannot-receive-from-specified-address-unauthenticated-senders-not-allowed-in-sendgrid/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Sat, 22 Jun 2013 11:40:47 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET 4.0]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[SendGrid]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=598</guid>

					<description><![CDATA[I received this while working with SendGrid. The issue was, we are not using Authentication before sending emails. Just set it up in our code and it works like charm.]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2013/06/22/550-cannot-receive-from-specified-address-unauthenticated-senders-not-allowed-in-sendgrid/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>Important features of MVC4</title>
		<link>https://maniish.wordpress.com/2012/07/21/important-feature-of-mvc4/</link>
					<comments>https://maniish.wordpress.com/2012/07/21/important-feature-of-mvc4/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Fri, 20 Jul 2012 23:33:23 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[important]]></category>
		<category><![CDATA[mvc4]]></category>
		<category><![CDATA[single page application]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=595</guid>

					<description><![CDATA[A few important updates and features of MVC4. Bundling and Minification, brought to ASP.NET 4.5 and now also integrated into ASP.NET MVC 4. This allows you to build faster applications by minimizing the number of requests to the server (bundling requests). Web API integration into ASP.NET: new support for creating HTTP REST services, has built-in [&#8230;]]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2012/07/21/important-feature-of-mvc4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>GTD Application Comparision</title>
		<link>https://maniish.wordpress.com/2012/04/08/gtd-application-comparision/</link>
					<comments>https://maniish.wordpress.com/2012/04/08/gtd-application-comparision/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Sun, 08 Apr 2012 14:25:03 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[GTD]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/?p=592</guid>

					<description><![CDATA[Following are the GTD tasks list software comparison for android &#160;]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2012/04/08/gtd-application-comparision/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>

		<media:content url="http://androinica.com/wp-content/uploads/2010/06/BestGTDAndroidAppDroidVsDroid.png" medium="image" />
	</item>
		<item>
		<title>Should I buy from RightGadgets.in? A BIG NO</title>
		<link>https://maniish.wordpress.com/2011/08/23/should-i-buy-from-rightgadgets-in-a-big-no/</link>
					<comments>https://maniish.wordpress.com/2011/08/23/should-i-buy-from-rightgadgets-in-a-big-no/#comments</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Tue, 23 Aug 2011 11:11:29 +0000</pubDate>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[rightflorist.co.in]]></category>
		<category><![CDATA[rightgadgets.in]]></category>
		<category><![CDATA[rightgadgets.in review]]></category>
		<category><![CDATA[Should I buy]]></category>
		<category><![CDATA[worst shopping experience]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/2011/08/23/should-i-buy-from-rightgadgets-in-a-big-no/</guid>

					<description><![CDATA[Hi all, This is just to aware you about the worst shopping experience I had with the website that is RightGadgets.in. There are many site from which I have been purchasing since last 5 years and thought to try on RightGadgets.in. I made an order with RightGadgets.in and after 10 days there are no reply [&#8230;]]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2011/08/23/should-i-buy-from-rightgadgets-in-a-big-no/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
		<item>
		<title>IE9&#8211;Increase last Visited Websites in Address bar</title>
		<link>https://maniish.wordpress.com/2011/08/12/ie9-settings-address-bar-history-and-width/</link>
					<comments>https://maniish.wordpress.com/2011/08/12/ie9-settings-address-bar-history-and-width/#comments</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Fri, 12 Aug 2011 17:15:07 +0000</pubDate>
				<category><![CDATA[IE9]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[5 Items]]></category>
		<category><![CDATA[Address Bar]]></category>
		<category><![CDATA[Last Visited Sites]]></category>
		<category><![CDATA[List of Websites]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/2011/08/12/ie9-settings-address-bar-history-and-width/</guid>

					<description><![CDATA[The default settings of IE9 has only 5 last visited websites and that sometimes irritates user as they could not select website that we visit daily. It looks something like this: If we want to view this list fully, we need to change following settings: Goto IE9 &#62; Internet Options &#62; Content Tab &#62; AutoComplete [&#8230;]]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2011/08/12/ie9-settings-address-bar-history-and-width/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>

		<media:content url="https://maniish.wordpress.com/wp-content/uploads/2011/08/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="https://maniish.wordpress.com/wp-content/uploads/2011/08/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Outlook Addins</title>
		<link>https://maniish.wordpress.com/2011/08/12/outlook-addins/</link>
					<comments>https://maniish.wordpress.com/2011/08/12/outlook-addins/#respond</comments>
		
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 18:33:47 +0000</pubDate>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Outlook Addins]]></category>
		<category><![CDATA[Outlook Plugins]]></category>
		<guid isPermaLink="false">http://maniish.wordpress.com/2011/08/12/outlook-addins/</guid>

					<description><![CDATA[Good Source of outlook addins http://www.codetwo.com/downloads/freeware/]]></description>
		
					<wfw:commentRss>https://maniish.wordpress.com/2011/08/12/outlook-addins/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/ad525e373155ca8f665e14034d851f2cbc87655b88d16afffc18cda8871eb36c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Manish</media:title>
		</media:content>
	</item>
	</channel>
</rss>
