dbTalk Databases Forums  

Missing steps in DTS export package?

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss Missing steps in DTS export package? in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Hugo Faber
 
Posts: n/a

Default Missing steps in DTS export package? - 01-12-2005 , 02:16 AM






Hi

I am struggling to get a working SQL 7 DTS package for exporting data
to ms access, to be deployed on machines running MSDE 1.0.

When I run my VB program to execute my package, I get the following
error:

"The Microsoft Jet Engine cannot find the input table or query XXX.
Make sure it exists and that its name is spelled correctly"

After some investigation, it seemed to me that I dont have any create
steps!

The following:

Dim oPkg As New DTS.Package

oPkg.LoadFromStorageFile App.Path & "\ExportMSaccess.dts",
"welkom"

Dim i As Integer
For i = 1 To oPkg.Steps.Count
MsgBox oPkg.Steps(i).Name
Next i

provides me a list of steps, but it contains only the copy steps!

Copy Data from XXX to XXX Step
Copy Data from YYY to YYY Step
.......

However, when I create a SQL 2000 version of my package, the list of
steps is as follows:

Create Table XXX Step
Copy Data from XXX to XXX Step
Create Table YYY Step
Copy Data from YYY to YYY Step
.......

The SQL 2000 package works fine.

What could be wrong here?


Best regards,
Hugo Faber

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.