Search found 42189 matches

by chulett
Wed Nov 23, 2005 7:24 am
Forum:
Topic: DTD for XML File generated by Process Metabroker
Replies: 2
Views: 1206

Re: DTD for XML File generated by Process Metabroker

csrazdan wrote:Where can I find DTD for this XML file?

You could just generate it with a tool like XML Spy.
by chulett
Tue Nov 22, 2005 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Capture File Name from Sequential File Stage
Replies: 22
Views: 7339

Don't forget the magic words! "PTERM CASE NOINVERT" :wink:
by chulett
Tue Nov 22, 2005 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot Remove Version Control
Replies: 2
Views: 1261

At this point, I'd suggest you just delete any Ascential directories you still have on your machine. Assuming Version Control is all that is left at this point. Lastly, once all of the install directories are gone you should probably go in via regedit and remove anything left that still is related t...
by chulett
Tue Nov 22, 2005 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run time error 457
Replies: 4
Views: 2312

gr17 wrote:Any thoughts will be appreciated.

Don't add the same parameter twice? :wink:
by chulett
Tue Nov 22, 2005 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequences
Replies: 4
Views: 2366

Exactly.
by chulett
Tue Nov 22, 2005 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequences
Replies: 4
Views: 2366

Sure, create a new Sequence that runs the nine.
by chulett
Tue Nov 22, 2005 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do I strip first 2 characters ....
Replies: 3
Views: 1156

Use the substring operator to check the first two characters. Basically: If link.NAME_COLUMN[1,2] = "SN" Combine that with the length check to get everything but the first two if that's what you need: link.NAME_COLUMN[3,Len(link.NAME_COLUMN)-2] Of course, some sanity checks on the ...
by chulett
Tue Nov 22, 2005 1:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL using DataStage Administrator
Replies: 6
Views: 4946

Talk to your DBA, those seem like DB2 specific numbers to me.
by chulett
Mon Nov 21, 2005 11:15 pm
Forum:
Topic: Version Control and Metastage
Replies: 6
Views: 2272

Two hashed files in the project - APM_BATCH and APM_VERSION. Some discussion here on them.
by chulett
Mon Nov 21, 2005 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Behaviour in Loop
Replies: 7
Views: 3291

Couldn't hurt to open an issue with support, they should be able to either provide an explanation or deem it a problem. In either case, can you post back with whatever you find out?
by chulett
Mon Nov 21, 2005 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to connect to DataStage for test automation
Replies: 11
Views: 5741

The Server Job Developer's Guide (servjdev.pdf) Chapter 19: DataStage Development Kit (Job Control Interfaces). :wink:
by chulett
Mon Nov 21, 2005 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Behaviour in Loop
Replies: 7
Views: 3291

Ok. Must be something specific in the way the triggers are setup, then. Your loop is just a numeric loop, set to iterate From: 1 Step: 1 To: 3? There is an example in the Designer's Guide, something similar to what you are trying to do. Check the Job Sequences chapter for the Examples of Using Loop ...
by chulett
Mon Nov 21, 2005 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: nested trigger
Replies: 8
Views: 1500

You can use terminator for the purpose of abort but there is no need of that in this basic case. You are jumping ahead, Kumar. We don't know what version they have, hence we don't know if they have a Terminator stage available to them. Sequencer obviously abort if any one of the job aborts for the ...
by chulett
Mon Nov 21, 2005 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: subroutines
Replies: 5
Views: 2546

Umm... hello, did you say something? Oh, I see, in the subject line. Not the world's best place as it's not at all obvious until one replies. plz write a code so that we can know how to write routine Please check out (via the Manager) the sdk section of the Routines supplied with the product. All ki...