<?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>Too Geek To Be True&#187; Microsoft</title>
	<atom:link href="http://www.toogeektobetrue.com/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.toogeektobetrue.com</link>
	<description>Everything About Geeky Stuff</description>
	<lastBuildDate>Sat, 04 Feb 2012 03:01:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to input NULL value to a table field in SQL Server Enterprise Manager or Management Studio</title>
		<link>http://www.toogeektobetrue.com/featured/how-to-input-null-value-to-a-table-field-in-sql-server-enterprise-manager-or-management-studio/</link>
		<comments>http://www.toogeektobetrue.com/featured/how-to-input-null-value-to-a-table-field-in-sql-server-enterprise-manager-or-management-studio/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 15:06:43 +0000</pubDate>
		<dc:creator>Chris Prakoso</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.toogeektobetrue.com/?p=114</guid>
		<description><![CDATA[Go to the field you want to change, click on the field to enter edit mode, and press CTL + 0 (that the number zero). That&#8217;ll do the trick :)  This works in Enterprise Manager (SQL Server 2000) as well as Management Studio (SQL Server 2005). Now, what I want to know is, how to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.toogeektobetrue.com%2Ffeatured%2Fhow-to-input-null-value-to-a-table-field-in-sql-server-enterprise-manager-or-management-studio%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.toogeektobetrue.com%2Ffeatured%2Fhow-to-input-null-value-to-a-table-field-in-sql-server-enterprise-manager-or-management-studio%2F&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Go to the field you want to change, click on the field to enter edit mode, and press <strong>CTL + 0 (that the number zero)</strong>.</p>
<p>That&#8217;ll do the trick :)  This works in Enterprise Manager (SQL Server 2000) as well as Management Studio (SQL Server 2005).</p>
<p>Now, what I want to know is, how to input a blank String ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toogeektobetrue.com/featured/how-to-input-null-value-to-a-table-field-in-sql-server-enterprise-manager-or-management-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is there a better way to refresh dbml when database schema changes ?</title>
		<link>http://www.toogeektobetrue.com/featured/is-there-a-better-way-to-refresh-dbml-when-database-schema-changes/</link>
		<comments>http://www.toogeektobetrue.com/featured/is-there-a-better-way-to-refresh-dbml-when-database-schema-changes/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 14:46:43 +0000</pubDate>
		<dc:creator>Chris Prakoso</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.toogeektobetrue.com/?p=112</guid>
		<description><![CDATA[I&#8217;ve been doing a lot of LINQ works at the moment, and naturally database schema changes quite regularly.  Table fields added, deleted or changed, etc. So far the only way I know to refresh my dbml file is by deleting the table from the designer and drag a new one back from the server explorer.  [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.toogeektobetrue.com%2Ffeatured%2Fis-there-a-better-way-to-refresh-dbml-when-database-schema-changes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.toogeektobetrue.com%2Ffeatured%2Fis-there-a-better-way-to-refresh-dbml-when-database-schema-changes%2F&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been doing a lot of LINQ works at the moment, and naturally database schema changes quite regularly.  Table fields added, deleted or changed, etc. So far the only way I know to refresh my dbml file is by deleting the table from the designer and drag a new one back from the server explorer.  Obviously after a few of this excercise, I got really annoyed, and started thinking to myself &#8220;I can&#8217;t believe that Microsoft didn&#8217;t think about how to make this operation easier&#8221;.  But looking around for this &#8216;Refresh&#8217; button on Visual Studio was proven to be a waste of time, it just simply doesn&#8217;t exist !</p>
<p>Still with curiosity and determination to find a better way, I scoured the Internet to look for a definitive answer, just in case I missed something.</p>
<p>To short answer to the above question is a resounding <strong>NO</strong>. <strong>Cor Blimey !</strong></p>
<p>There is an alternative though, but only if you want to pay for it :)  On some of the forums where this question was asked, there always this guy who keep promoting his <a href="http://www.huagati.com/dbmltools/" target="_blank">add-in</a> for Visual Studio 2008 which apparently does exactly what we need.</p>
<p>I still can&#8217;t believe that Microsoft would missed such an important thing.  Oh .. well &#8230; it is Microsoft after all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toogeektobetrue.com/featured/is-there-a-better-way-to-refresh-dbml-when-database-schema-changes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft is making T-Shirt! You&#8217;re Joking?! No, Not Really</title>
		<link>http://www.toogeektobetrue.com/featured/microsoft-is-making-t-shirt-youre-joking-no-not-really/</link>
		<comments>http://www.toogeektobetrue.com/featured/microsoft-is-making-t-shirt-youre-joking-no-not-really/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 01:24:50 +0000</pubDate>
		<dc:creator>Chris Prakoso</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.toogeektobetrue.com/?p=109</guid>
		<description><![CDATA[WHAT!!? Well, that&#8217;s what I said, when I read this article which points to this article. According to these two sources, Microsoft is launching a new line of clothing product under a name &#8230; wait for it &#8230; &#8216;Softwear by Microsoft&#8217; !!! You have gotta be kiddin&#8217; me! I think Microsoft needs to fire their [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.toogeektobetrue.com%2Ffeatured%2Fmicrosoft-is-making-t-shirt-youre-joking-no-not-really%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.toogeektobetrue.com%2Ffeatured%2Fmicrosoft-is-making-t-shirt-youre-joking-no-not-really%2F&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>WHAT!!?<br />
Well, that&#8217;s what I said, when I read <a title="The Boy genius site" href="http://www.boygeniusreport.com/2008/12/06/microsoft-prepares-to-launch-its-own-clothing-line-no-seriously/" target="_blank">this article</a> which points to <a title="AdAge Site" href="http://adage.com/agencynews/article?article_id=133069" target="_blank">this article</a>.  According to these two sources, Microsoft is launching a new line of clothing product under a name &#8230; wait for it &#8230; &#8216;Softwear by Microsoft&#8217; !!! You have gotta be kiddin&#8217; me!  I think Microsoft needs to fire their Marketing Department and hire new ones.  Especially after that &#8220;I&#8217;m a PC&#8221; campaign crap, that is now even plastered inside the tube (subway train).</p>
<p><a href="http://www.toogeektobetrue.com/wp-content/uploads/2008/12/img_0115.jpg"><img class="aligncenter size-medium wp-image-105" title="I'm A PC" src="http://www.toogeektobetrue.com/wp-content/uploads/2008/12/img_0115-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>Ok, so even then, at least they can do better than these two sample T-Shirts, can&#8217;t they ?  I mean, c&#8217;mon, they look shite, who wants to buy these ?!</p>
<p><a href="http://www.toogeektobetrue.com/wp-content/uploads/2008/12/dos-1.jpg"><img class="aligncenter size-full wp-image-106" title="Microsoft T-Shirt - DOS" src="http://www.toogeektobetrue.com/wp-content/uploads/2008/12/dos-1.jpg" alt="" width="500" height="358" /></a></p>
<p style="text-align: center;"><a href="http://www.toogeektobetrue.com/wp-content/uploads/2008/12/the_albuquerque_lg.jpg"><img class="aligncenter size-full wp-image-107" title="Microsoft T-Shirt - the_albuquerque" src="http://www.toogeektobetrue.com/wp-content/uploads/2008/12/the_albuquerque_lg.jpg" alt="" width="400" height="286" /></a></p>
<p>Please Microsoft, unless you can show something better, stay away from these things, and back on doing what you do best, Making Software!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toogeektobetrue.com/featured/microsoft-is-making-t-shirt-youre-joking-no-not-really/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

