A Microsoft data-tier-application also known as a DAC is a self-contained unit of deployment that enables data-tier developers and DBAs to package SQL Server objects, including database and instance objects, into a single entity called DAC package or DACPAC.

learn more… | top users | synonyms

0
votes
1answer
18 views

Microsoft SSDT (10.3.21208.0)/Data-tier Project (MSVS 2010) and “Sharing”/Copied Certificates between the Project and Referenced Database Project

I am writing a "framework" of SQL Server (targeting 2008R2 and 2012) stored procedures and common/reference tables. Each SSDT/Date-tier project represents a different component (can be within the same ...
0
votes
0answers
27 views

Can I import BACPAC with data into DB project?

I have a database with data that I want to turn into a Visual Studio 2012 SQL Database project. I tried using "Import->Data-tier application (*.dacpac)..." - I get no errors but no data gets imported ...
0
votes
0answers
144 views

Unable to add database reference for dacpac in Visual Studio 2012 - OutOfMemoryException

I have a dacpac that is 12 MB and which took 45 minutes to generate within VisualStudio 2012. It is for a production Microsoft Dynamics GP (formerly Great Plains) customer database. I was amazed that ...
1
vote
0answers
47 views

Deploying data-tier applications using inno setup

i need help. There is a data-tier application .dacpac which is need to be deployed at another user's computers using inno setup. Script creates SQL Server instance at target machine and then the ...
0
votes
0answers
139 views

VS 2012 Data Tier App Project Updating Database Best Practice

IN VS2012, I creates a database project, an imported a Data Tier Application .dacpac I had created from my SQL Server 2012 instance. My question is if I am developing, and all I want to do is modify ...
0
votes
0answers
308 views

Create dacpac from Visual Studio database projects

In our project we have 8 Visual Studio database projects (SQL2008). Is there an easy approach to automated build a dacpac package out of these projects? I don't seem to manage to create a Data Tier ...
0
votes
1answer
128 views

Where the data-tier application version number is stored in a Visual Studio project?

I have an utility which fills version numbers in AssemblyInfo.cs files. Now I need to implement a functionality to adjust version numbers for Visual Studio Data-Tier applications (DACPAC). I see that ...
0
votes
0answers
153 views

Handling the current version of Data-tier Application in SQL Server 2012

I have some problems with tracking versions of my DACs. I was unable to see the current version of database. Luckily I found this post: How do I find the current version of a SQL Server 2008 data-tier ...
0
votes
0answers
47 views

which database project i should use for databse on SQL Server 2008 R2

i have use the database project with SQL Server 2005 and i am impressed with the feature. now i want to use the database project for database which i am going to deploy on SQL Server 2008 R2 ...
0
votes
0answers
146 views

HierarchyID datatype in Data tier application

i have started using the new data tier application using visual studio 2010 for my database development and deployment. but after analysing i found that some of the feature are not supported by Data ...
0
votes
1answer
140 views

Best practice for setting the DacUpgradeOptions.IgnoreDataLoss flag in continuous deployment?

What is the best practice of setting the DacUpgradeOptions.IgnoreDataLoss property in automatic Data-Tier Application (DACPAC) upgrades? Based on the MSDN documentation (link), if IgnoreDataLoss is ...
1
vote
1answer
955 views

SQL Sever 2012 Data-Tier Application Template for Visual Studio?

Is there a SQL Server 2012 Data-tier Application template for VS 2010? The version of the template I am using will only allow SQL Sever 2008R2. If I open the Management Console in SQL Server 2012 ...
3
votes
2answers
817 views

Database versions deployment. Entity Framework Migrations vs SSDT DacPacs

I have a data-centered application with SQL Server. The enviroments in which it´ll be deployed are not under our control and there´s no DBA in there (they are all small businesses) so we need the ...
4
votes
2answers
301 views

Deploying to SQL Azure with Powershell - Is there a way to generate the data-loss warning report?

I have a question regarding Data-Tier Application (DACPAC) upgrade when deploying to a SQL Azure database. When we upgrade the DACPAC manually through the wizard UI, there is a step where we review ...
4
votes
1answer
166 views

Complex data migration in the Data-tier Application Framework (DAC Fx)

I am excited to make the leap to using DAC Fx and declarative database development. The major obstacle for me is how to handle complex data migrations across several different versions of the schema. ...
0
votes
1answer
149 views

Good formats for storing configuration information like stored procedure names

In our application data tier we completely rely on stored procedures and web services for Data exchange. We use code like below in loads of pages to execute stored procedures switch(requesttype) { ...
1
vote
2answers
634 views

Error deploying a DACPAC to a SQL Azure server

Using a VS2010 SP1 Data-tier application project, I created the simplest database I could: CREATE TABLE [dbo].[Table1] ( column_1 int NOT NULL, column_2 int NULL ) I then successfully ...
1
vote
0answers
500 views

Dacpac File and Deploying Data Tier Application Error

I am using the new SQL Server tools with the data-tier project in Visual Studio. I created a snapshot (.dacpac) and I tried to deploy it on a SQL Server instance in management studio but I get the ...
2
votes
1answer
944 views

MSBuild and sqlcmd variables in data-tier applications PostDeployment.sql

Preface I use data-tier application project and SQL CLR Database project to manage Database part of my application. I have 3 different machines (for local, dev/ci/qa and preprod/prod deployment ...
0
votes
1answer
426 views

Use DAC (data tier application) pack API on Azure

I have a small application that uses the same API as the powerscript examples for upgrading a database from a dacpac (data-tier application). To get it working on a Windows 2008 server without any ...
0
votes
1answer
311 views

Why does a SQL Azure DACPAC upgrade (via a PowerShell script) consistently take 30min to complete

I created a PowerShell script to upgrade a SQL Azure instance with my latest DACPAC (taken from http://msdn.microsoft.com/en-us/library/ee634742.aspx). What I have experienced when running my ...
1
vote
1answer
626 views

How to deal with temp tables when compiling database project

We just created a solution with multiple data projects. We inherited the system and want to do a database cleanup but when we compile some of the databases we get the error that table, id etc does not ...
1
vote
1answer
301 views

How do I update my Data-Tier Application project to reflect schema changes made in other tools?

I created a data tier application project and imported the initial db schema. How do I update this project when a DBA makes a change to the db schema using SSMS? I want to re-import the database into ...
2
votes
2answers
2k views

Data tier applications - Post Deployment

This is such a simple thing that even asking here is making me feel stupid but since I have been stuck on this for long time, I will ask it here. I am working on a data-tier application in visual ...
4
votes
1answer
199 views

Deploying a Data-Tier Project on SQL Azure - Pre and Post Deployment use the master DB

I'm using a Data Tier DB project to deploy on Azure, everything goes fine, the DB and the schema are well created except that during the pre and post deployment it always tries to use the master DB ...
0
votes
1answer
218 views

How do I find the current version of a SQL Server 2008 data-tier application?

We are using the SQL Server Data-tier application (dacpac or DAC pack) and I'm having a hard time finding out what the current version a database is at. Is there a way to find it in SQL Server ...
0
votes
2answers
166 views

Good Data Tier Dev & Design: What are the common bad practises in data tier development?

I am currently researching the best practises (at a reasonably high level) for application design for highly maintainable systems which result in minimal friction to change. By "Data Tier" I mean ...
0
votes
1answer
1k views

Data-Tier Projects and Linked Servers

I'm trying to use a Data-Tier application involving a linked server and running into an odd problem. Here's what I have: 1) A VS2010 solution which includes a Data-Tier project. 2) The Data-Tier ...
4
votes
2answers
602 views

Missing: Utility Explorer in Management Studio 2008 R2

I am trying to use Data-Tier applications and am going through the tutorial here. When I get to step two the tutorial says to open Utility Explorer in the view menu. But it is not there! I looked all ...