I have a solution with 2 projects: Startup project is VB.net the other is a BI project with an SSIS package. If I right click on the SSIS package in BI and choose execute the package works flawlessly. No warnings, no errors, no nothing. IF I try to execute the same package in VB.net using the following code:
Dim
dtsPkg As New PackageDim dtsApp As New Application
Dim events As IDTSEvents
Dim Res As DTSExecResult
dtsPkg = dtsApp.LoadPackage("C:\package.dtsx", events)
dtsPkg.InteractiveMode = True
dtsPkg.DebugMode = True
dtsPkg.LoggingMode = DTSLoggingMode.Enabled
Dim var1 As Microsoft.SqlServer.Dts.Runtime.Connections = Nothing
Dim var2 As Microsoft.SqlServer.Dts.Runtime.Variables = Nothing
Dim var3 As Microsoft.SqlServer.Dts.Runtime.IDTSLogging = Nothing
Res = dtsPkg.Validate(var1, var2, events, var3)
Res = dtsPkg.Execute()
I get the following error:
The product level is insufficient for component "Data Conversion 1" (101).
This particular package imports a table from an Access db into a SQL2000 DB. I understand the error message(and that it's probably tied to the fact that I'm trying to use a sql2000 database for a destination), but what I don't get is why it works from Bi but not from the VB.Net code You would think that it would fail in both

SSIS Package runs in BI but not VB.Net
Zatlite
Thanks,
Gaz Man
Thanks for your time Matt.
Steve
Pankaj Banga
I have everything except the actual SQL Server Engine of Microsoft SQL Server 2005 Community Technology Preview (June 2005) Developers Edition installed. Here is the info from the about box:
Microsoft SQL Server Management Studio 9.00.1187.00
Microsoft Analysis Services Client Tools 2000.090.1187.00
Microsoft Data Access Components (MDAC) 2000.085.1117.00 (xpsp_sp2_rtm.040803-2158)
Microsoft MSXML 2.6 3.0 4.0 5.0 6.0
Microsoft Internet Explorer 6.0.2900.2180
Microsoft .NET Framework 2.0.50215.312
Operating System 5.1.2600
SQL2000 is also the Developers Edition Version 8.0.2039
I hope that what you were looking for when you refered to SKU
>>need the appropriate SKU for the components/tasks that you are using.
What would be the appropriate SKU's to get this scenario working
Thanks Steve
Pim Verver
Thanks,