Anybody knows if this works with SQL Server Express 2005 (currently in Beta)?
Thanks
Works with SQL Server Express 2005 ?
Moderator: SourceGear
I just tried installing it on my SQL 2005 Beta 2 instance and it doesn't work. It is due to one of the stored procedures that has an ambigous column reference. Starting in 2005 it's required that all columns be explicitly specified.
Example:
should be
This is especially important when joins are involved. For clarity I didn't show an example using a join, but if you have any more questions I'd be more than happy to clarify.
Example:
Code: Select all
SELECT Name, Address FROM Users
Code: Select all
SELECT u.Name, u.Address FROM dbo.Users u
I just remembered as well that in the "Best Practicies Analyzer Tool for Microsoft SQL Server 2000 1.0" it has a feature that will check for 2005 compatability.
http://www.microsoft.com/downloads/deta ... laylang=en
http://www.microsoft.com/downloads/deta ... laylang=en