Search found 42189 matches

by chulett
Sat Jan 16, 2010 8:33 am
Forum: General
Topic: Datastage Sequencer Properties Box not opening
Replies: 12
Views: 4002

Contact your official support provider.
by chulett
Fri Jan 15, 2010 10:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence dependent on status of another sequence
Replies: 6
Views: 2087

S1 and S2 run six hours apart... but I suppose this 'S0' could sleep that long between them.
by chulett
Fri Jan 15, 2010 5:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence dependent on status of another sequence
Replies: 6
Views: 2087

If you want to go 'Execute Command' then that would be the operating system command I mentioned - dsjob. One of the many options it supports is -jobinfo which will give you (amongst other things) the status from the last run. You'd need to parse that out from the output using something like 'grep' w...
by chulett
Fri Jan 15, 2010 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get Number Of Columns in Delimited File
Replies: 7
Views: 2203

As I noted first off, it would help to know which number you were actually after.
by chulett
Fri Jan 15, 2010 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence dependent on status of another sequence
Replies: 6
Views: 2087

Well... you will actually have to run Sequence 2 if you want the check of Sequence 1 to be part of it. You may want to consider scheduling a script that makes a call to "dsjob -jobinfo" so it can check to see what happened with Seq1 which then only runs Seq2 (again with dsjob) if the first...
by chulett
Fri Jan 15, 2010 4:25 pm
Forum: General
Topic: Problem useing multiple value in parameter with where clause
Replies: 26
Views: 6325

Not sure how that helps, they need to see how a job parameter is being resolved to see if it retains its quotes or not. Perhaps a union with a simple sql to unconditionally pull a single record so you can get information into the Peek stage?
by chulett
Fri Jan 15, 2010 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NOT IN function in datastage
Replies: 11
Views: 10275

D'oh. Dang PX job. :(
by chulett
Fri Jan 15, 2010 12:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NOT IN function in datastage
Replies: 11
Views: 10275

Here I would take a delimited string and then Convert the delimiters to Value Marks:

Code: Select all

Convert(",",@VM,"40,50,100")
Pretty dang sure it should be Value Marks, can't test this right now. :?
by chulett
Fri Jan 15, 2010 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NOT IN function in datastage
Replies: 11
Views: 10275

Set up a stage variable with that list in a dynamic array via its Initial Value. Then you could use a function like Locate() to search the list. You could do something similar with Index() as long as you avoid a substring match, typically handled by the proper use of delimiters.
by chulett
Fri Jan 15, 2010 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage strange behaviour
Replies: 11
Views: 3205

Hard to say but I doubt it. You need .Net for the client and multiple versions don't conflict with each other, from what I've read.
by chulett
Fri Jan 15, 2010 8:55 am
Forum: General
Topic: Scheduling is not functioning using Datastsage Director
Replies: 6
Views: 1879

First thing I'd try is to Unschedule the job and then Add it back to the scheduler. Kind of like a reboot. :wink:
by chulett
Fri Jan 15, 2010 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP as a Service
Replies: 3
Views: 2005

Hmmm... there are tons of examples out there on how to write ftp scripts. Seems to me one consideration would be secure versus non-secure transfers - will you be doing one or the other or a mixture of both. The non-secure ones will be pretty straight-forward, requiring a userid and password while th...
by chulett
Fri Jan 15, 2010 7:13 am
Forum: General
Topic: Problem useing multiple value in parameter with where clause
Replies: 26
Views: 6325

OK. What does the Peek stage show?
by chulett
Fri Jan 15, 2010 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Mload stage error
Replies: 8
Views: 14740

Any chance that 'out of range input data' simply means your source data was longer than 100 bytes/characters? A varchar2(200) won't always fit in a varchar(100) without some help.