Iphone
Just purchased a iPhone s3 and found the WP app. Taking time to write this blog but my speed is increasing all the time
(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); })();
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.
Sony has a bendable screen… WOW i want one NOW !
Sony’s new “bendable” and transparent organic light emitting diode (OLED) technology is being shown in prototypes featuring an OLED a mere 0.2 mm thick. The prototype devices are a Vaio notebook, a flexible e-book, and a Walkman bracelet.
The OLED screen is transparent and flexible, and the viewing angle range is almost unlimited. OLED technology has a number of advantages over LEDs, including higher efficiency, faster response times, and no requirement for backlighting. The devices also have very low energy needs.
Enlarge
IBM is going to become a cloud storage provider with an XIV-based Smart Business Storage Cloud and a private cloud Information Archive, unifying disk and tape.
Big Blue says it “absolutely plans to have a significant place in the cloud storage space,” and this is its marker, emblazoned with XIV and BladeCenter.
It dismissively characterises most existing low entry price storage clouds as being been limited to ‘sandbox’ use cases for secondary or tertiary copies of data, or for use in development and test environments. The data is not frequently accessed and doesn’t grow to massive scale. In other words, it is not remotely mission-critical or enterprise grade.
Smart Business Storage Cloud
Its Smart Business Storage Cloud is a private cloud offering, using low-cost components in a scale-out clustered model. The components include XIV storage arrays and BladeCenter servers, plus IBM’s General Parallel File System (GPFS)
There is support for multiple petabytes of capacity, billions of files in a single global namespace and scale-out performance previously limited, Big Blue asserts, to the largest high-performance computing (HPC) systems.
It supports existing file access methods and, IBM says, is highly secure and built to make use of a customer’s “existing security and authentication infrastructure.”
via Big Blue storage cloud is bad news for rivals • The Register.
Did your backup program/utility leave your SQL Server running in an squirrely scenario?
My colleges asked me if ’squirrely’ is a technical term and for this post the answer is yes. CSS is not going to deny support to customers but SQL Server was not tested in this scenario so you may have chased yourself up a tree, hence I use the term squirrely.
SQL Server 2005 introduced snapshot databases and modified DBCC to create secondary snapshot streams for online DBCC operations. The online DBCC creates a secondary stream of the database files that is SPARSE. CSS has found that if a 3rd party backups and utilities or NT Backup is used against the database files the SPARSE setting may get incorrectly, propagated to the parent stream. In the case of DBCC this is the original database files(s).
Repro