Works with SQL Server Express 2005 ?

If you are having a problem using Vault, post a message here.

Moderator: SourceGear

Post Reply
grennis
Posts: 3
Joined: Wed Aug 18, 2004 6:42 pm

Works with SQL Server Express 2005 ?

Post by grennis » Thu Aug 19, 2004 8:06 pm

Anybody knows if this works with SQL Server Express 2005 (currently in Beta)?

Thanks

jclausius
Posts: 3706
Joined: Tue Dec 16, 2003 1:17 pm
Location: SourceGear
Contact:

Post by jclausius » Thu Aug 19, 2004 8:11 pm

I haven't tried it out yet.

However, the Vault database scripts did not work with early betas of Yukon, so I would be surprised if they ran under SQL Server 2005 Express.
Jeff Clausius
SourceGear

atweiker
Posts: 5
Joined: Wed Jun 02, 2004 1:17 pm
Location: Waltham, MA
Contact:

Post by atweiker » Fri Oct 08, 2004 10:40 pm

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:

Code: Select all

SELECT Name, Address FROM Users
should be

Code: Select all

SELECT u.Name, u.Address FROM dbo.Users u
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.

jclausius
Posts: 3706
Joined: Tue Dec 16, 2003 1:17 pm
Location: SourceGear
Contact:

Post by jclausius » Sat Oct 09, 2004 8:09 am

Thanks for the report.
Jeff Clausius
SourceGear

atweiker
Posts: 5
Joined: Wed Jun 02, 2004 1:17 pm
Location: Waltham, MA
Contact:

Post by atweiker » Sat Oct 09, 2004 10:49 pm

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

Post Reply