How to create a bootable Windows 7 USB flash drive
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.
(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); })();
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.
Just purchased a iPhone s3 and found the WP app. Taking time to write this blog but my speed is increasing all the time
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.