Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Dave does Data
Tutorials, Performance Tuning, Tips & Techniques on SQL Server & its ecosystem.
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
News
SQL 08 SP1 has shipped,
Lijit Search
Tags
.NET
.NET Development
ADO.NET
Azure
BI
Cloud Computing
Connection Strings
Data Mining
Downloads
Events
Free
Geography
Geometry
Kids
Linked Servers
Load Testing
News
Polygon
Recommendations
Reporting Services
Small Biz
Software+Services
Spatial
SQL Analysis Services (SSAS)
SQL Integration Services (SSIS)
SQL Management Studio (SSMS)
SQL Reporting (SSRS)
SQL Server
SQL Server Analysis Services
SQL Server Intergration Services
SQL Server Spatial
SSAS
SSIS
SSRS
Tools
Training
TSQL
Visual Studio DBPro
Webcast
Windows 7
Recent Posts
Review: Programming MS SQL Server 2008 – Holistic coverage for an App Developer
Review: MS SQL Server 2008 Internals – Core knowledge for all DBA’s
Tip: Avoiding REALLY hard to reproduce bugs in Production
Tip SSMS: How to quickly find the line with the Syntax error
How to get Database Edition Power Tools to work on Visual Studio Team System 2008 Database Edition GD
Archives
October 2009 (1)
September 2009 (8)
August 2009 (1)
May 2009 (1)
April 2009 (11)
March 2009 (1)
February 2009 (3)
January 2009 (1)
November 2008 (9)
October 2008 (8)
April 2009 - Posts
Tuesday, April 21, 2009 4:18 AM
News: Look at the CTP3 of our upcoming Distributed Cache technology - Velocity
If you develop high scale, scale out/distributed apps, check out Microsoft Project Code Named “Velocity” Community Technology Preview 3 (CTP3) Released to Web on 7 April 09. "Velocity" is a distributed in-memory application cache platform for
Posted by
davele
|
2 Comments
Filed under:
.NET Development
,
.NET
,
News
Tuesday, April 21, 2009 3:59 AM
Get SQL Server 2008 for FREE: FREE Database, FREE Reporting Solution, FREE Spatial
If you are a Student, Teacher or anyone on a budget, don’t feel pushed to use Open Source databases like MySQL just because they have an entry level offering for free. You may be one of many who expressed concern for its quality & design which suffered
Posted by
davele
|
2 Comments
Filed under:
SQL Server
,
Recommendations
,
SQL Reporting (SSRS)
,
Downloads
,
News
,
Free
Tuesday, April 21, 2009 3:56 AM
How do I get FREE Software from Microsoft?
It is common to hear students & small start-up businesses state “I use Open Source because it is free” or they download pirate Microsoft from really dodgy, spyware prone sites to get it free. The irony is that many of these people qualify to get the
Posted by
davele
|
2 Comments
Filed under:
SQL Server
,
Recommendations
,
Downloads
,
News
,
Free
,
Training
Tuesday, April 21, 2009 3:51 AM
SQL Server 2008: April 09 Updates – Handy links
Scanning the Microsoft sites it might not be obvious that April 09 was a huge month for new releases from the SQL Team. Given that it is sometimes difficult to find everything in one place I thought I’d make it easier for you by creating this index. Beyond
Posted by
davele
|
1 Comments
Filed under:
SQL Server
,
Data Mining
,
SQL Reporting (SSRS)
,
Downloads
,
News
,
Free
Tuesday, April 21, 2009 12:15 AM
Teach your Kids to Program these school Holidays
If you know Primary, High School aged kids OR know a teacher who struggles to keep up with Technology. Point them at Kid's Corner . This site is full of videos, articles, tips & tricks. Many of the videos are have young teens being actors & doing
Posted by
davele
|
2 Comments
Filed under:
.NET Development
,
Recommendations
,
Free
,
Training
,
Kids
Monday, April 20, 2009 9:36 PM
Free Chart Controls for .NET: Windows and Web – Handy Links
Even though its been available for more than 6 months, many people have overlooked this little gem. Those that are using it get terribly excited when they discover how easy it is to use the features & capability it offers. So if you need very powerful
Posted by
davele
|
2 Comments
Filed under:
.NET Development
,
.NET
,
SQL Server
,
SQL Reporting (SSRS)
,
News
Thursday, April 16, 2009 4:17 PM
SQL Server 2008 Jumpstart Materials – very detailed training, now FREE to download.
This post is a pointer to a lot of in-depth training on SQL 2008. It includes Virtual PC’s with Demo Scripts, Lab Exercises & a lot of PowerPoint's with notes. To get access to it all click here SQL Server 2008 Training . It is free but you do need
Posted by
davele
|
5 Comments
Filed under:
Data Mining
,
Recommendations
,
SQL Reporting (SSRS)
,
SQL Analysis Services (SSAS)
,
SQL Integration Services (SSIS)
,
Downloads
,
Free
,
Training
Friday, April 10, 2009 11:06 AM
SQL Server 2008 SP1 - Released
April 09: Service Pack 1 for SQL 2008 can now be downloaded Download SQL 2008 Service Pack 1 from here: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=66ab3dbb-bf3e-4f46-9559-ccc6a4f9dc19 See the SQL Server New Blog for more
Posted by
davele
|
2 Comments
Filed under:
SQL Server
,
Downloads
,
News
Tuesday, April 07, 2009 1:10 AM
Tip: Make your Identity Keys go Further
It is extremely common to use computer generated Primary Keys in a table. eg: OrderID INT PRIMARY KEY CLUSTERED IDENTITY ( 1 , 1 ) NOT NULL Most people set the seed to 1. I don’t know why. Perhaps because it is the default value, maybe they display their
Posted by
davele
|
4 Comments
Filed under:
SQL Server
,
TSQL
Monday, April 06, 2009 9:30 PM
Database Design – Many to Many Join Tables
I was asked why my previous post suggested to “not use an Identity Column as a Key for Many to Many Join Tables”. This post outlines some of the pitfalls I’ve seen. UPDATED: 17 May 09: To clarify a question about how to do this with higher normal forms
Posted by
davele
|
4 Comments
Monday, April 06, 2009 10:40 AM
SQL Server NOLOCK Hint & other poor ideas.
Frequently I see production code, created by professional development teams, peppered with NOLOCK & other TSQL Hints. While totally understandable, as it is a common recommendation by many internet posts & often found in their sample code, this
Posted by
davele
|
5 Comments
Filed under:
SQL Server
,
TSQL