Calling SSIS package using C# Code !
-
2012년 7월 23일 월요일 오전 7:53
I am getting this Error when I call this SSIS Package using C# code. However, the package runs fine in it's own environment. The error that is displayed is --
The task <Script Task Name> cannot run on installed (64-bit) of Integration Services. It requires Standard Edition (64-bit) or higher.
Can anybody help me make this code work?
모든 응답
-
2012년 7월 23일 월요일 오전 7:58I think the key is Standard Edition. What SQL Server edition is installed on the failing system?
-
2012년 7월 23일 월요일 오전 8:06
-
2012년 7월 23일 월요일 오전 8:24답변자
Hi Abhinav !
Please have a look at below MSDN artilce;
http://msdn.microsoft.com/en-us/library/ms136090.aspx
Usually we have BIDS client tool available with MS SQL Server 2008 Enterprise Edition, but you need BIDS Standart Edition or Enterprise Edition to be run this.
-
2012년 7월 23일 월요일 오전 8:28
Hi,
Do you have SSIS installed on your server?
This looks like a similar issue
Regards
Satheesh -
2012년 7월 23일 월요일 오전 9:35
Hi Abhinav !
Please have a look at below MSDN artilce;
http://msdn.microsoft.com/en-us/library/ms136090.aspx
Usually we have BIDS client tool available with MS SQL Server 2008 Enterprise Edition, but you need BIDS Standart Edition or Enterprise Edition to be run this.
I have installed SQL Server 2008 R2 and SQL Server 2008 as well. But BIDS is available only with the R2 version of SQL. Now is this a considerable problem ? -
2012년 7월 23일 월요일 오전 9:56
Hi Abhinav,
Did you look at the link?
You can use the following command to verify if SSIS in installed
SC Query MsDtsServer100
If the service is installed you should get:
SERVICE_NAME: MsDtsServer100
TYPE : 10 WIN32_OWN_PROCESS
STATE : 1 STOPPED
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0otherwise you should get an error:
[SC] EnumQueryServicesStatus:OpenService FAILED 1060:
The specified service does not exist as an installed service.
Have a look at this link too
- 답변으로 제안됨 Shulei Chen 2012년 7월 25일 수요일 오전 9:39
-
2012년 7월 23일 월요일 오전 10:49
Can you just look "SQL Server Integration Services 10.0" in Services.msc? If its not there, probably, you may have to install it.
- 답변으로 제안됨 Shulei Chen 2012년 7월 25일 수요일 오전 9:39
- 답변으로 표시됨 Abhinav Sudarshan 2012년 7월 26일 목요일 오전 6:46

