missing Microsoft.SqlServer.ManagedDTS
Hi
I am trying to run a SSIS package first time through vb.net console application. As the first step, i was trying to add the reference for Microsoft.SqlServer.ManagedDTS assembly but it was not in the available assemblies list box in visual studio 2003!
Please guide what i am supposed to do to get it, or if there any other alternative.
Thanks in advance
Utsav
August 30th, 2006 1:32pm
In the Add Reference dialog window, click on the browse tab. Then navigate your way to:
C:\Program Files\Microsoft SQL Server\90\SDK\Assemblies
There you will find the Microsoft.SQLServer.ManagedDTS.dll, select it and hit okay...
August 30th, 2006 5:05pm
ManagedDTS runs in process. If the console app is running on a machine that does not have SSIS loaded on it you will not be able to reference the dll. The application will also crash at the point that you attempt to access DTS objects. This also causes problems if you are executingpackages thatcontain static paths. Because the package runs on the client machine, the paths will be assumed to be local. My solution to this was to create a web service that executes the packages on the server. Unfortunately, this aproach seems to be a huge chore, as I am having problems passing the credentials to the package app object. If anyone has any experience with this, some guidance would be greatly appreciated.
March 23rd, 2007 4:32pm
Hello everybody,
I do have SSIS installed on my box, but the Microsoft.SqlServer.ManagedDTS isn't available in the aforementionned folders.
It is in fact installed in the GAC. How can i still reference the DLL?? By the way, I looked on our SQL server box, and there it is also installed in the GAC and not available in the folders.
Thanks in advance
April 10th, 2008 7:31pm
Found: Just needed to reinstall the SDK of SQL server which wasn't probably done at initial install
April 11th, 2008 3:25pm
Where did you find the SDK? I am having the same problem and cant find it on any of the disks. I have all the SQL Server 2005 disks.
Thanks
Prem
December 5th, 2008 8:39pm
Make sure that when you install, you select all th options under the client tools - it's one of those.
December 8th, 2008 8:58pm
Hi,
I am facing the same problem. I have the SSIS installed on my VPC, but unable to find this dll in the ProgramFiles folder.
I need to write .Net code to invoke my SsIS package, and I believe it's not possible without having this dll referenced in my code.
Please help.
June 30th, 2010 3:11pm
1. Run C:\Windows\assembly\gac_msil in the Run box from Start
2. Find the dll in folder Microsoft.SqlServer.ManagedDTS
3. Copy the dll
-
Proposed as answer by
quan585
Thursday, January 26, 2012 3:58 PM
January 26th, 2012 3:57pm
1. Run C:\Windows\assembly\gac_msil in the Run box from Start
2. Find the dll in folder Microsoft.SqlServer.ManagedDTS
3. Copy the dll
-
Proposed as answer by
quan585
Thursday, January 26, 2012 3:58 PM
January 26th, 2012 6:57pm
this works for me, thanks!
May 7th, 2012 8:45pm
This is Working Fine .Thanku..
February 18th, 2015 1:13am
Thanks,
this actually helped!
April 9th, 2015 2:21pm
Thanks!!, you saved my day.
June 26th, 2015 2:26am