how to know if SSIS is installed in my SQL SERVER 2008 R2

让人想犯罪 __ 提交于 2019-12-07 08:49:08

问题


I have sql server 2008 r2, I want to put my stored procedures in packages, i search the internet , i see that i have to install a data tool from microsoft for that. but this tool needs to be SSIS installed in SQL SERVER 2008 R2, how do i know if i have it ? thank u

this is my sql server 2008 r2


回答1:


You can go to SQL Server Configuration Manager (usually available in Start>Sql Server 2008 R2> Configuration Tools). Once launched, you have access to all available services. If Sql Server Integration Services 10.0 is there, you can right click it and start it, if it's not already launched. Otherwise, you will have to go to the installation center and add this service.

SSIS is not available on Sql Server editions. It's not available on Express for example. You can check your edition with the following query:

SELECT SERVERPROPERTY('productversion'), 
       SERVERPROPERTY ('productlevel'), 
       SERVERPROPERTY ('edition')


来源:https://stackoverflow.com/questions/15944008/how-to-know-if-ssis-is-installed-in-my-sql-server-2008-r2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!