Skip to content Skip to sidebar Skip to footer

Web Deploy - DACPAC / XML Output

I'm trying to deploy a web application. I can deploy the website portion just fine, however the SQL database won't deploy. The error I receive in VS2012 on my development machine i

Solution 1:

I had this problem, and it ended up being a permissions issue.

The user only had db_datareader, db_datawriter, and execute.

I needed to give the SSDT user db_owner, then I was able to get past this error.


Post a Comment for "Web Deploy - DACPAC / XML Output"