Service Release 1 is HERE!
The team is very happy to announce that Visual Studio Team Edition for Database Professionals Service Release 1 is finally ready for consumption!
It took us much longer then expected, but here it is. This is a single Service Release for all 9 languages:
- Italian - Italy
- Chinese - Taiwan
- Korean - Korea
- English - United States
- Chinese - China
- French - France
- German - Germany
- Spanish (Traditional Sort) - Spain
- Japanese - Japan
The knowledge base (KB) article describing the service release can be found here https://support.microsoft.com/kb/936612/
The actual download page can be found here:
https://www.microsoft.com/downloads/details.aspx?FamilyID=9810808c-9248-41a5-bdc1-d8210a06ed87&displaylang=en
-GertD
"DataDude" Software Architect
Comments
Anonymous
July 24, 2007
Just a quick note for those of you who are lucky enough to work with VSDBPRO. Service release 1 is available,Anonymous
July 25, 2007
Confused about DataDude - I use VS professional. Is Datadude just another addin allowing me to create db projects, or is it a completely separate dev product? Does it require team foundation server? If I wait for VS 2008 is it included in the professional version? Thanks for any clarifications.Anonymous
July 26, 2007
The Accentient Blog on Using Project to enter "Resources". GertD on Service Release 1 is here! Grant...Anonymous
July 30, 2007
Hi, I'm pleased to see SR1 available because I needed it for variables support. But I'm surprised to see that variables can only be used in a restricted context. There is my need in post-deployment scripts : IF $(DEBUG) = 1 Begin --test data for development environment INSERT INTO dbo.myTable VALUES('some data') End But $(DEBUG) used as described upper generates an error at parsing. The workaround I use is : Declare @debug as int select @debug = cast('$(DEBUG)' as int) if @debug = 1 print 'DEBUG MODE!!!' Anymore smart solution ?Anonymous
August 10, 2007
The pre-processor only expand variables and includes and does not have the notion of conditionals. This is only because we wanted to stay compatible with the infrastructure used by SQLCMD.EXE and SQL Server Management Studio. We do have a strong need for conditional support based on variables, so we are going to add this in the Rosario release, but by doing that we are breaking compatibility with SQL Server 2005 and 2008 in this area. -GertDAnonymous
August 14, 2007
The team that builds Visual Studio Team Edition for Database Professionals (or “DBPro” for short!) hasAnonymous
August 14, 2007
Gert Drapers and I recently sat down to film a Channel 9 interview showcasing the new Service ReleaseAnonymous
August 16, 2007
If you want to document your database you've got to see Gert Drapers on Channel9. Data Dude is answeringAnonymous
August 16, 2007
My blog has moved to sqlblogcasts.com/blogs/simons The full version of this post can be found here.,...Anonymous
September 27, 2007
Just a quick note for those of you who are lucky enough to work with VSDBPRO. Service release 1 is availableAnonymous
October 19, 2007
Is there support for UPDATE FROM syntax with SP1? It appears the parser does not handle an alias well. This leads to hundreds of warnings for me. Snippet from a sample: update [Security].[dbo].[AdUsers] set userid = s.userid, domain = s.domain, status = s.status, ... from [Security].[dbo].[AdUsersStage] s where [Security].[dbo].[AdUsers].guid = s.guid and [Security].[dbo].[AdUsers].lastupdate < s.lastupdate The stage table is aliased as "s" since it has columns identical to those in AdUsers. The warning thrown is: Warning 1 TSD3006: The relationship from [Procedure] dbo.admsp_adsynch cannot be resolved between the following possible identifiers: [Column] Security.dbo.AdUsersStage.s, [Column] Security.dbo.AdUsersStage.userid, [Column] Security.dbo.AdUsers.s. C:Documents and SettingsdouglmaMy DocumentsVisual Studio 2005ProjectsTestSecurity DatabaseSecurity DatabaseSchema ObjectsStored Proceduresdbo.admsp_adsynch.proc.sql 22 11 Security Database