The vsdbcmd tag has no wiki summary.
9
votes
2answers
4k views
Database deploy (vsdbcmd.exe): DatabaseName and DefaultDataPath are ignored?
Visual Studio database edition comes with a tool, vsdbcmd.exe, that should allow someone to deploy a .dbschema file (which is generated by the database project on build) to a database. It does this by ...
7
votes
4answers
1k views
Visual Studio Database Project and SQL Azure
I'm really struggling with the best approach for managing a SQL Azure database which is based on a Visual Studio 2010 Database Project. I figured it would be easy enough to use VSDBCMD to create diff ...
4
votes
2answers
363 views
vsdbcmd data loss may occur, but where?
When using vsdbcmd to deploy my database:
vsdbcmd.exe /a:Deploy /manifest:MyDatabase.deploymanifest
I Get:
SQL01268 .Net SqlClient Data Provider: Msg 50000, Level 16, State 127, Line 6 Rows ...
3
votes
1answer
99 views
Database Project and SQLCMD doing a comparison
We currently have a Database Project, which we wrote a WIX Installer for to deploy it, using VSDBCMD means we are able to do a comparison against the current database, and do an update or fresh ...
2
votes
1answer
407 views
Script.PostDeployment.sql not executing in CI build VS 2010
I have a database project in VS 2010 (SQL 2008). The local Deploy Solution action works and executes all of the SQL in the Script.PostDeployment.sql file. When I check changes in, the Build ...
1
vote
1answer
86 views
VSDBCMD for Two Database Diff?
Doing a Google/Bing search for "vsdbcmd two databases diff" is not showing me anything clear. I just have two databases live on the same server and I want to diff them and then apply schemata ...
1
vote
1answer
279 views
When deploying a database project with vsdbcmd I get the error “Vardecimal support is enabled for the database but disabled for the project”
I get: SQL01265 Vardecimal support is anabled for the database but disabled for the project
I've tried changing the .sqlsettings files to have: ...
1
vote
1answer
414 views
primary key constraint violation, only when deploying DB via vsdbcmd
I am using VS 2010 Premium RTMRel (10.0.30319.1) and SS2008. I have a database which builds AOK and has a post deployment script which loads some sample data. When I build and deploy this DB via the ...
0
votes
1answer
9 views
Calling VSDBCMD from inside a dbproj file
I have a standard sql server 2008 project which has been created using vs2010. I have been trying to modify the build process so that at the end a custom task should fire which would call VSDBCMD to ...
0
votes
0answers
49 views
VSDBCMD tmp_ms_xx
I'm using the "Sql Server 2008 Database Project" to help us updating and maintaining our databases.
Now I'm facing this problem when renaming a primary key column.
The column has no identity on, not ...
0
votes
2answers
192 views
Can't deploy database project - VSDBCMD deploy not seeing connection string in manifest
This tutorial shows how to Define a Custom Workflow to Deploy a Database from Team Foundation Build:
http://msdn.microsoft.com/en-us/library/ff805001.aspx
However, when TFS tries to deploy my ...
0
votes
0answers
67 views
VSDBCMD : Pre and Post Deployement Scripts not copied when the database already exists
Using the sql server project in visual studio 2010, I noticed that if my target database does not exists, I get two things :
CREATE DATABASE
PreDeployement & PostDeployement Scripts
However, ...
0
votes
1answer
173 views
CREATE DATABASE fails using VSDBCMD
When trying to deploy a VS2010 database project using the VSDBCMD tool, I get the following error:
SQL01268 .Net SqlClient Data Provider: Msg 5133, Level 16, State 1, Line 1 Directory lookup for the ...
0
votes
0answers
139 views
vsdbcmd: property IgnoreObjectPlacementOnPartitionSchema could not be used
I use vsdbcmd.exe to compare schemas to generate a deployment script to update TargetDatabase.
there is the command:
vsdbcmd.exe /a:deploy /dd:- /dsp:sql /model:ProjectName.dbschema ...
0
votes
1answer
191 views
Unable to load sqlceme35.dll when using vsdbcmd.exe
I'm using vsdbcmd.exe to deploy a database to SQL Server 2008 on Windows 7 x64 and I'm getting an error message saying:
An unexpected failure occuured: Unable to load DLL 'sqlceme35.dll': The ...
0
votes
1answer
227 views
Database Project Insists on “Rebuilding” Table on Deployment for Dropped Columns
So I have a VS2010 Database Project that I am deploying, with a few schema changes. I have one table in particular that the VSDBCMD insists on "rebuilding" i.e. rename->create->copy->drop
The only ...
0
votes
1answer
81 views
How do you fix TSD02016 error in Database
I have a database I am using the Visual Studio 2010 Database Project tool vsdbcmd.exe to create a schema from.
vsdbcmd /a:Import /dsp:Sql /model:"Database" /cs:"Server=SqlServer; Initial ...
0
votes
1answer
256 views
VSDBCMD deployment for additions to third party databases
We have some custom objects (stored procedures etc) in an SQL Server 2005 database belonging to an ERP system. The custom objects are in different schemas to the ERP objects. We're using Database ...