-1

I am getting the following error message while installing the .NET SDK for azure from https://azure.microsoft.com/en-us/downloads/ enter image description here

How to fix this issue? I have the latest SSDT installed but still having the issue.

enter image description here

need_the_buzz
  • 423
  • 2
  • 9
  • 18
  • did you try enabling the Microsoft SQL Server Data Tools in Visual Studio 2015, like the message suggests? https://msdn.microsoft.com/en-us/mt186501.aspx – Claies Sep 24 '15 at 02:23
  • SQL Server Data Tools are installed by default, unless you selected a custom installation option for Visual Studio and chose not to install them. If they are not installed, then you need to modify your Visual Studio installation and add them. – Claies Sep 24 '15 at 02:27
  • Yes i have installed the SQL server data tools. My SSIS works too. – need_the_buzz Sep 24 '15 at 02:30
  • well that doesn't make sense; the Azure installer clearly thinks that you don't have LocalDb installed. – Claies Sep 24 '15 at 02:32
  • @Claies have added the screen shot of the version of SSDT installed. – need_the_buzz Sep 24 '15 at 13:04

1 Answers1

0

The issue here is that VS2015 installs a core set of SQL Server functionality by default even if the "SQL Server Data Tools" checkbox is not selected during installation. This results in "SQL Server Data Tools" showing as installed even though some components like LocalDB are left out.

In your case you need to modify VS2015 in Add/Remove Programes. This will let you go in and enable this checkbox, which will install LocalDB.

Kevin Cunnane
  • 8,020
  • 1
  • 32
  • 35