Questions tagged [sql-server-data-tools]

SQL Server Data Tools (SSDT) introduces an ubiquitous, declarative model that spans all the phases of database development and maintenance/update inside Visual Studio. The developer can use SSDT TSQL design capabilities to build, debug, maintain and refactor databases whether working with a database project, or directly with a connected database instance located on or off-premise.

SQL Server Data Tools (SSDT) introduces an ubiquitous, declarative model that spans all the phases of database development and maintenance/update inside Visual Studio. The developer can use SSDT TSQL design capabilities to build, debug, maintain and refactor databases whether working with a database project, or directly with a connected database instance located on or off-premise.

With SSDT developers can use familiar Visual Studio tools for database development, such as: code navigation, IntelliSense, language support that parallels what is available for C# and VB, platform-specific validation, debugging and declarative editing in the TSQL Editor. SSDT also provides a visual Table Designer for creating and editing tables in either database projects or connected database instances.

While working on database projects in a team-based environment, developers can use version control for all the files. When it’s time to publish the project, developers can publish to all supported SQL platforms; including SQL Azure and Microsoft SQL Server 2012. SSDT platform validation capability ensures that your scripts will work on the target you specify.

SSDT also includes special project types and tools for developing SQL Server 2012 Analysis Services, Reporting Services, and Integration Services Business Intelligence (BI) solutions (formerly known as Business Intelligence Development Studio).

2042 questions
263
votes
2 answers

Visual Studio 2015 Database Project directory contains a file with extension jfm

Assuming we have a database project called MyDatabase then a file called MyDatabase.jfm appears in the root of the project directory. It is exclusively locked while the project is open in Visual Studio It is a binary file It has only started…
122
votes
4 answers

unresolved reference to object [INFORMATION_SCHEMA].[TABLES]

I've created a UDF that accesses the [INFORMATION_SCHEMA].[TABLES] view: CREATE FUNCTION [dbo].[CountTables] ( @name sysname ) RETURNS INT AS BEGIN RETURN ( SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = @name …
Sam
  • 40,644
  • 36
  • 176
  • 219
74
votes
3 answers

Using SSIS BIDS with Visual Studio 2012 / 2013

I want to use SSIS /BIDS project in Visual Studio 2012. I have both Visual Studio 2010 and Visual Studio 2012 installed along with Microsoft SQL Server 2012. VS 2010 was installed first followed by MS SQL 2012 which got me BIDS integrated with VS…
62
votes
4 answers

How to properly manage database deployment with SSDT and Visual Studio 2012 Database Projects?

I'm in the research phase trying to adopt 2012 Database Projects on an existing small project. I'm a C# developer, not a DBA, so I'm not particularly fluent with best practices. I've been searching google and stackoverflow for a few hours now but I…
48
votes
9 answers

SSDT installation issue (Failed to execute EXE package.)

I am having an issue with the SSDT installation for VS2017. I have ran the installer three times, once basic, once following VS update and the last following some minor windows updates. All 3 times the logs stumble at the same point, anyone know…
47
votes
8 answers

Error while uploading a report

I have create a report using visual studio 2015 with SSDT Tools installed from the following link https://msdn.microsoft.com/en-us/mt186501 The database is on SQL Server 2014. The reports work on my machine however when I try to upload a report on…
Abe
  • 1,879
  • 2
  • 24
  • 39
45
votes
5 answers

How to build .sqlproj projects on a build server?

I have many .sqlproj projects that need to be built on our build server. I don't want to install all of Visual Studio on the build server just so I can install SSDT to build these. How can I build .sqlproj projects without a full VS install? Here's…
Daryl
  • 3,253
  • 4
  • 29
  • 39
45
votes
10 answers

VS 2012 Database Project "unresolved reference to object" Error

I created SQL Server Database Project in VS 2012 & imported our database. When I build the project, I get a lot of "unresolved reference to object" Errors. These errors are only for a few views I have in my database. The syntax for these views are…
Adel Khayata
  • 2,717
  • 10
  • 28
  • 46
44
votes
4 answers

SSIS Extension for Visual Studio 2022

I have downloaded and installed Visual Studio 2022. Then after click on modify Now, I want to create SSIS package, for this I have started VS22 and in "manage extensions" when I try to find Microsoft SSIS, I am unable to find. For this, I have…
36
votes
3 answers

Command-line/API for Schema Compare in SSDT SQL Server Database Project?

In Visual Studio 2012, we have Schema Compare in SSDT's SQL Server Database Project (DbProject) project which helps Compare source versus target Update target to make it the same as source Where Source and target can be either a database, a…
Nam G VU
  • 33,193
  • 69
  • 233
  • 372
36
votes
3 answers

SSDT-BI SSIS in x64?

I run Visual Studio 2012 and I'm new to SSIS. I attempted to install SSDT-BI (June 2013 version) in order to research SSIS, but I was unable to complete the install with my default instance because the architectures don't match--my server is x64…
bwerks
  • 8,651
  • 14
  • 68
  • 100
35
votes
6 answers

Visual Studio 2017 does not have Business Intelligence Integration Services/Projects

I do not see an option to create an SSIS project using Visual Studio 2017.
SKh
  • 387
  • 1
  • 3
  • 12
34
votes
6 answers

Using SSDT, how do I resolve SQL71561 errors when I have a view that references objects in a different database?

I have a database project in SSDT and when I import a view that references objects in a different database, I get error SQL71561, with a description along these lines: Error 4 SQL71561: View: [schema].[viewname] has an unresolved reference to…
Jeff Ogata
  • 56,645
  • 19
  • 114
  • 127
34
votes
5 answers

Suppress some warnings in SQL Server SSDT

In SQL Server Data Tools, I would like to suppress some, but not all, occurrences of SQL71502 ("--- has an unresolved reference to object ---"). I know I can suppress through Project Properties, Build, Suppress Transact-SQL warnings, but this will…
Jason Kresowaty
  • 16,105
  • 9
  • 57
  • 84
31
votes
3 answers

Publish DACPAC to SQL Server 2014 using SqlPackage.exe?

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:\Program Files (x86)\Microsoft SQL Server\110\DAC\bin). However, in attempting to…
Nick Jones
  • 4,395
  • 6
  • 33
  • 44
1
2 3
99 100