Publish DACPAC to SQL Server 2014 using SqlPackage.exe?

前端 未结 3 1516
故里飘歌
故里飘歌 2020-12-04 17:58

I\'ve been successfully publishing DACPACs to SQL Server 2008-2012 instances using SqlPackage.exe, as installed by SQL Server Data Tools (and typically found in C:\\Pr

3条回答
  •  温柔的废话
    2020-12-04 18:43

    SSDT installs the Dac DLLs inside Visual Studio in the latest releases. This is to avoid side by side issues (Visual Studio 2012 vs 2013 vs SSMS) that required all to be updated to use the latest code. If you have updated to the latest SSDT, you'll find SqlPackage.exe and the related DLLs in the VS Install Directory\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130. For VS2013 the VS install directory is C:\Program Files (x86)\Microsoft Visual Studio 12.0, and it's 14.0 for VS2015. SQL Server Management Studio (SSMS) and the standalone Dac Framework MSI both install to the system-wide location. This is C:\Program Files (x86)\Microsoft SQL Server\130\Dac\bin.

    **Ans of Mr. Kevin Cunnane. is a right process but if the database in sql2016 use 140\dac **

提交回复
热议问题