The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Has anyone used Nuget to package db proj's

We are packaging our binaries into a nuget package and uploading them to a repository after each build and unit test is successful. We then deploy out of nuget onto our test servers. We want to do ...
0
votes
0answers
30 views

Using nuget within VS solution with only database dbproj projects to reference other dbproj files

So I have a Visual Studio solution which contains 3 database (.dbproj) projects. These projects need to reference other sql projects from other solutions, which I have packaged and uploaded to nuget. ...
0
votes
1answer
265 views

Visual Studio 2010 - cannot open database project (null reference)

I'm recently faced with problem that my VS2010 cannot open the database project. It's ends with: <path>.dbproj : error : Object reference not set to an instance of an object. It happen with ...
0
votes
1answer
59 views

Custom MSBuild task in DBProj

I've created a custom MSBuild task for our database project. This tasks uses XLSX file to generate reference data insert scripts that get merged into the post deployment script. I tested this with a ...
0
votes
0answers
36 views

Deploying DB project without creating DB

I have a DB project in my visual studio, it contains few Tables and Stored procedures. My requirement is, when I say deploy it should generate script only for tables and sps however it should not ...
4
votes
0answers
375 views

AppHarbor one step build and how to deploy my database

I finally got to the point where my solution does everything that's needed in it's build step: Download NuGet packages. Deploy the database (only if it's not there yet). Build the solution. Run any ...
1
vote
1answer
120 views

Remove VS DB deployment script dependency on server name

When I deploy dbproj to SQL script and try to run it on another computer I get an error: The server name in the build script SOMENAME does not match the name of the target server ANOTHERNAME. ...
1
vote
0answers
103 views

Database Test Configuration AllowConfigurationOverride database name

How can I get different build agents to run the unit tests against their own specific instance or database name? Are there any property overrides or variables available in .dbunittest.config files ? ...
3
votes
1answer
585 views

Error “SQLBuildTask” Task could not be loaded from the asssembly 'Microsoft.Data.Schema.Tasks.Sql'

I'm trying to build a db project using msbuild.exe, running on a VM with Windows Server 2008 R2 Enterprise for 64-bit OS. Most of my applications are building successfully, this one DB project is ...
0
votes
1answer
210 views

msdeploy Visual Studio 2010 Database Project (dbproj)

I understand that you can package/deploy a database project from Visual Studio, but, does the database project produce an output that can be deployed using msdeploy, or are they totally unrelated? ...
0
votes
1answer
44 views

Stop DB Project Launching by default when hit F5.

Using: MVC3, Vs2010, and a DbProject In a Solution I have an MVC3 project and a DB project. Whenever I hit f5 to startup the MVC project, the DBproject starts before. I dont want this behavior. I ...
1
vote
0answers
174 views

Error SQL03120 on Trigger scripts in 2008 DB Project

I'm working on adding a database project in VS2010. I created a SQL 2008 DB Project, pointed at the development server, and it seems to have generated all of the appropriate schema objects. However, ...
1
vote
4answers
215 views

VS1010 Database Projects and reference data scripts

Just wondering the best way to handle the following.... I want to have a VS2010 database project to keep the schema of my database in the dev, integration test and production environments in sync. ...
4
votes
1answer
234 views

In my dbproj, setting «Copy always» or «Copy if newer» on a file fail the build on the build server

In VisualStudio 2010, we have a scenario where one dbproj (B) reference another dbproj (A). In dbproj (A), if I set the build action on one of our custom sql script in the Scripts folder to «Copy ...
1
vote
1answer
256 views

VS2010 Partial Database Projects, will they help in my scenario?

Can I use partial Database Projects in the following scenario? I have numerous databases which are all inter-dependent on each other. Database2 executes SPs on Database1 and Database3 and Database3 ...
0
votes
2answers
616 views

Visual Studio error when trying to open dbproj files

I have Visual Studio 2008 Database Edition, and everything worked great until the first time I tried to load a .dbproj file. These database project files work for the other developers I work with, but ...
1
vote
2answers
306 views

CruiseControl.NET: Ignore DB projects in a build

After upgrading to VS2010 we have a few .dbproj files that are causing issues in our CI builds. They do nothing except just store SQL files anyway, so I'd like to just ignore them. I'm running ...
1
vote
0answers
287 views

In a Visual Studio 2010 Database Project, how do I make a specified user the owner of a Schema?

As the title says, I have a user defined in my DB project that needs to be setup so that it is the owner of a specific Schema. How do I define that in the DB project? I need to modify the creation ...
77
votes
7answers
23k views

Microsoft.WebApplication.targets was not found, on the build server. What's your solution?

Trying to build my project on the build server gives me the following error: Microsoft (R) Build Engine Version 4.0.30319.1 error MSB4019: The imported project "C:\Program Files ...
2
votes
4answers
6k views

VS2010 DB Project Deploy Error SQL01268 Directory Lookup Failed

My VS2010 database deploy is failing on my build server, which has SQL Server 2008 R2 installed on it. Here's the output that's relevant: Creating Acme.Database... ...
11
votes
2answers
801 views

Visual Studio 2010 database edition schema compare where target is dbproj

I'm using visual studio 2010 database edition and running a schema compare against a SQL database instance to sync up new objects on the database which arent yet in my project (dbproj). My solution ...
2
votes
1answer
2k views

Can't open a .dbproj file from VSTS DB Edition

The title says everything. I'm using Visual Studio Team System 2008 Database Edition and I just can't open any database project. I get the following error message: '..' cannot be opened because ...
1
vote
2answers
673 views

How to deploy a dbproj in vs2010?

Quick question, I'm new to dbproj, how do you actually deploy it to my sqlserver from vs2010? I built the dbproj, and it created a bunch of files in sql/debug folder, then what do I do?
0
votes
1answer
350 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 ...