SQL Server Integration Services are missing in SQL

2019-05-14 08:41发布

I am trying to install SQL Server 2014 with Integration Services.

Here is the download link I used to download with tools.

File Name : SQLEXPRWT_x64_ENU

But when I proceed to feature selection Integration Services is missing ?

enter image description here

What am i doing wrong ?

Any help would be great.

Update

For future readers, Actually Integration Services is not available on sql azure as said by @Nick.McDermaid , and i was trying to export sql query results to excel. I have to try some other options for sql azure. But Integration Services must be available in other sql server products.

3条回答
等我变得足够好
2楼-- · 2019-05-14 09:22

Take a look at this page:

https://msdn.microsoft.com/en-us/library/cc645993(v=SQL.110).aspx

Under the heading

Integration Services

You'll see Express with Advanced Services has:

  • SQL Server Import and Export Wizard
  • Built-in data source connectors

But it doesn't have

  • SSIS designer and runtime

So the answer is no: express with advanced services does not have the full SSIS version, therefore you won't see it in the install tick boxes. It does have import/export wizard

SQL Server 2016 Development edition is free and comes with SSIS

To transfer data from Azure to a local excel file I can think of three options off the top of my head:

  • Manually, run a select query in SQL Server Management Studio, then copy paste the grid into Excel. Or you can right click/Save results as CSV

  • You should be able to use the import/export wizard on your local install of SQL Express to extract data from the Azure instance. I've never tried it though

  • If you want to automate it you can use SQLCMD to export a CSV file also

The next question is why do you want to export it? If it's for analysis you might be better served running SQL Queries. If it's for a report, again you might be better served with SQL queries or whatever bits of SSRS are installed with SQL Server Express Advanced

查看更多
Explosion°爆炸
3楼-- · 2019-05-14 09:37

This SSIS runtime is not available in any of the Express editions.

From MSDN:

enter image description here

The only extra services that you get with the Advanced Services are Full Text Search and Reporting Services.

This package contains all the components of SQL Server Express including the full version of SQL Server 2014 Management Studio. This is a larger download than “with Tools,” as it also includes both Full Text Search and Reporting Services.

查看更多
虎瘦雄心在
4楼-- · 2019-05-14 09:45

To my believe, to get SSIS you need to install SQLEXPRADV_x86_ENU.exe package instead. From the linked documentation ... if you check the Details section; this is what it says:

Express with Tools (SQLEXPRWT_Architecture_Language.exe)

  • This package contains everything needed to install and configure SQL Server as a database server including the full version of SQL Server 2014 Management Studio. Choose either LocalDB or Express depending on your needs above.

    Express with Advanced Services (SQLEXPRADV_Architecture_Language.exe)

    • This package contains all the components of SQL Server Express including the full version of SQL Server 2014 Management Studio. This is a larger download than “with Tools,” as it also includes both Full Text Search and Reporting Services.
查看更多
登录 后发表回答