<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for David's Blog</title>
	<link>http://blogs.clarience.com/davide</link>
	<description>Software architecture, development and other tidbits.</description>
	<pubDate>Thu, 09 Sep 2010 04:22:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on 27&#8221; Apple iMac, Windows 7 installation and a blank screen by Josiah LaChance</title>
		<link>http://blogs.clarience.com/davide/?p=15#comment-640</link>
		<author>Josiah LaChance</author>
		<pubDate>Sat, 16 Jan 2010 02:36:54 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=15#comment-640</guid>
		<description>Hey Man, I just purchased my new iMac &#38; W7 and ran into this same problem, if anyone else has this problem, HERE IS THIS FIX!!!

Thank you David!</description>
		<content:encoded><![CDATA[<p>Hey Man, I just purchased my new iMac &amp; W7 and ran into this same problem, if anyone else has this problem, HERE IS THIS FIX!!!</p>
<p>Thank you David!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 27&#8221; Apple iMac, Windows 7 installation and a blank screen by David</title>
		<link>http://blogs.clarience.com/davide/?p=15#comment-626</link>
		<author>David</author>
		<pubDate>Tue, 05 Jan 2010 13:46:10 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=15#comment-626</guid>
		<description>I haven't noticed any issues so far. I'm running version 8.661.0.0 of the ATI driver.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t noticed any issues so far. I&#8217;m running version 8.661.0.0 of the ATI driver.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 27&#8221; Apple iMac, Windows 7 installation and a blank screen by Justin</title>
		<link>http://blogs.clarience.com/davide/?p=15#comment-621</link>
		<author>Justin</author>
		<pubDate>Sat, 02 Jan 2010 14:58:52 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=15#comment-621</guid>
		<description>Thanks for the info, this helped me complete my Win 7 Prof x64 install on Boot Camp.

Have you had anyone report problems in Windows with graphics drivers after the install was successful?  When using Windows, I get frozen screens, yellow / pink polka-dots, and sometimes a black frozen screen.

Often times after this happens my desktop background goes from pictures to a black screen.</description>
		<content:encoded><![CDATA[<p>Thanks for the info, this helped me complete my Win 7 Prof x64 install on Boot Camp.</p>
<p>Have you had anyone report problems in Windows with graphics drivers after the install was successful?  When using Windows, I get frozen screens, yellow / pink polka-dots, and sometimes a black frozen screen.</p>
<p>Often times after this happens my desktop background goes from pictures to a black screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hash functions in T-SQL by Bernie</title>
		<link>http://blogs.clarience.com/davide/?p=11#comment-359</link>
		<author>Bernie</author>
		<pubDate>Wed, 28 Jan 2009 22:20:29 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=11#comment-359</guid>
		<description>It is some what ridiculous to have a checksum function that returns collisions to this degree.  In my own experience using a population of a 100K rows and 3 fields(char, datetime, int) to compute a checksum on a record.  23 times the Checksum function return the same value. I deem this to be hardly deterministic and therefore this function and sql server by association is making my job more difficult.  Temporarily, I am using the hashbyte function and passing that value to the checksum. No collisions so far :). I am very concerned that SQLServer has such a poor implementation of a CRC-32 hash algorith. I might switch to Oracle if I have anymore issues with hashing or third party hash written in C++.</description>
		<content:encoded><![CDATA[<p>It is some what ridiculous to have a checksum function that returns collisions to this degree.  In my own experience using a population of a 100K rows and 3 fields(char, datetime, int) to compute a checksum on a record.  23 times the Checksum function return the same value. I deem this to be hardly deterministic and therefore this function and sql server by association is making my job more difficult.  Temporarily, I am using the hashbyte function and passing that value to the checksum. No collisions so far :). I am very concerned that SQLServer has such a poor implementation of a CRC-32 hash algorith. I might switch to Oracle if I have anymore issues with hashing or third party hash written in C++.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hash functions in T-SQL by Ryan WIlliams</title>
		<link>http://blogs.clarience.com/davide/?p=11#comment-315</link>
		<author>Ryan WIlliams</author>
		<pubDate>Thu, 04 Dec 2008 00:10:27 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=11#comment-315</guid>
		<description>FFF61235-EC1A-428C-9FC8-DD794D4115A4 also has the same checksum</description>
		<content:encoded><![CDATA[<p>FFF61235-EC1A-428C-9FC8-DD794D4115A4 also has the same checksum</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hash functions in T-SQL by Generating a unique number for each row &#171; Exploring Microsoft.NET &#38; Apple Macintosh</title>
		<link>http://blogs.clarience.com/davide/?p=11#comment-148</link>
		<author>Generating a unique number for each row &#171; Exploring Microsoft.NET &#38; Apple Macintosh</author>
		<pubDate>Mon, 04 Aug 2008 18:05:48 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=11#comment-148</guid>
		<description>[...] Update: I happen to read that checksum() function is not guaranteed to give unique values. This is the case with SQL Server 2000 and I believe the same case with SQL Server 2005. For more information on checksum() collisions, take a look at this URL: http://blogs.clarience.com/davide/?p=11. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Update: I happen to read that checksum() function is not guaranteed to give unique values. This is the case with SQL Server 2000 and I believe the same case with SQL Server 2005. For more information on checksum() collisions, take a look at this URL: <a href="http://blogs.clarience.com/davide/?p=11." rel="nofollow">http://blogs.clarience.com/davide/?p=11.</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Base64 Encode / Decode by Just</title>
		<link>http://blogs.clarience.com/davide/?p=12#comment-16</link>
		<author>Just</author>
		<pubDate>Thu, 13 Mar 2008 13:08:12 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=12#comment-16</guid>
		<description>This is awesome!
For a couple of hours I was googling for something like that and saw so many stupid "solutions" so I thought I would never find what I wanted. I tried to make on my own something like select for xml raw, binary base64, and it was also stupid. Now I see I lack for a lot of useful knowledge, and I think the next book I will read will be "MCTS Self–Paced Training Kit (Exam 70–431): Implementing and Maintaining Microsoft SQL Server 2005".

Thank you for your laconic and nevertheless indeed effective code!</description>
		<content:encoded><![CDATA[<p>This is awesome!<br />
For a couple of hours I was googling for something like that and saw so many stupid &#8220;solutions&#8221; so I thought I would never find what I wanted. I tried to make on my own something like select for xml raw, binary base64, and it was also stupid. Now I see I lack for a lot of useful knowledge, and I think the next book I will read will be &#8220;MCTS Self–Paced Training Kit (Exam 70–431): Implementing and Maintaining Microsoft SQL Server 2005&#8243;.</p>
<p>Thank you for your laconic and nevertheless indeed effective code!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-only data by David Egerton&#8217;s WebLog &#187; Auto-create/auto-update statistics and read-only databases</title>
		<link>http://blogs.clarience.com/davide/?p=9#comment-5</link>
		<author>David Egerton&#8217;s WebLog &#187; Auto-create/auto-update statistics and read-only databases</author>
		<pubDate>Sat, 08 Sep 2007 15:22:40 +0000</pubDate>
		<guid>http://blogs.clarience.com/davide/?p=9#comment-5</guid>
		<description>[...] post is a short follow on to my last post&#160;about read-only data and locking in SQL Server. To prevent the lock-manager from taking [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] post is a short follow on to my last post&nbsp;about read-only data and locking in SQL Server. To prevent the lock-manager from taking [&#8230;]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
