Clarity, Technology, and Solving Problems | PracticeThis.com
WP7 App with Key Windows Azure resources – Slides, Videos, How-To’s, and T-shooting – for quick consumption on the go.
The notes taken while reading MCITP Self-Paced Training Kit (Exam 70-442): Designing and Optimizing Data Access by Using Microsoft SQL Server 2005 (Self-Paced Training Kits).
From the book:
“The join relates tables based on a key column, such as primary key or a foreign key.”
Performance tips from Chapter 14 — Improving SQL Server Performance related to joins:
“Try to avoid nullable foreign key columns to limit the amount of outer joins that might need to be written. Outer joins tend to be more expensive to process than inner joins. ” “Be sure to create an index on any foreign key. Because foreign keys are used in joins, foreign keys almost always benefit from having an index.”
“Try to avoid nullable foreign key columns to limit the amount of outer joins that might need to be written. Outer joins tend to be more expensive to process than inner joins. ”
“Be sure to create an index on any foreign key. Because foreign keys are used in joins, foreign keys almost always benefit from having an index.”
Example:
Examples are based on the sample AdventureWorks DB available here.
Special thanks go to my SQL mentor, SQL Customer Advisory Team member Jimmy May (blog|twitter)
When application access the SQL Server instance make sure those three configurations are in sync:
Best case scenario:
The Problem
Recently hit an issue of inability of debugging in Visual Studio 2010. I was receiving the following error message right after hitting F5:
“Unable to start Debugging.The SilverLight Developer Runtime Not Installed. Please Install a matching version”
I have verified the Silverlight version installed by navigating to a Silverlight enabled website (http://www.silverlight.net/) and right clicking on the running Silverlight control:
I have also checked what version Visual Studio was targeting – it offered Silverlight version 3. I thought it’s time to search the web.
The solution came from the post Unable to debug silverlight which was pointing to the Silverlight managed debugging package which appeared to be Silverlight_Developer.exe:
After successfully installing it I can flawlessly debug my own code flaws.