(function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga); })();

How to create a bootable Windows 7 USB flash drive

December 14th, 2009 Kevin No comments

If you’re looking for a quicker way to install Windows 7 than via DVD, try installing it from a USB drive. This guide describes two ways to make a bootable Windows 7 USB drive.

http://arstechnica.com/business/news/2009/12/-the-usb-flash-drive.ars?utm_source=rss&utm_medium=rss&utm_campaign=rss

Categories: Tech Tags: , ,

Massive drop in price of Microsoft cloud offerings – what does it mean?

November 4th, 2009 Kevin No comments
Categories: Everything else Tags:

COMPUTER UPGRADES for 2009

October 29th, 2009 Kevin No comments

 

clip_image001

clip_image002

clip_image003

clip_image004

clip_image005

clip_image006

clip_image007

clip_image008

clip_image009

clip_image010

clip_image011

clip_image012

Categories: Joke Tags:

Iphone

October 15th, 2009 Kevin No comments

Just purchased a iPhone s3 and found the WP app. Taking time to write this blog but my speed is increasing all the time

Categories: Tech Tags:

Why I prefer surrogate keys instead of natural keys in database design

October 12th, 2009 Kevin No comments

Great blog entry about using Surrogate keys in a datawarehouse.

 

Why I prefer surrogate keys instead of natural keys in database design

Simply put:

I prefer using surrogate keys because natural keys are by default a subject to change which is a bad behavior for a row identifier.

But let’s dig a bit deeper into each key type to see why this is. Here’s a little table with column names that tell us what kind of a key each column is.

Surrogate keys

A surrogate key is a row identifier that has no connection to the data attributes in the row but simply makes the whole row unique. And that property is also the downside of it. Because it has no connection to the data attributes we can have two rows with the exact same data in all columns except the key column. This is usually handled at the application side and is an acceptable downside.

An example of a surrogate key is an integer identity or a GIUD unique identifier. I’ve never seen another data type being used as a surrogate key successfully. Both have their pros and cons though.

via Why I prefer surrogate keys instead of natural keys in database design.

Categories: SQL Tags: ,