Search found 42189 matches

by chulett
Tue Jul 08, 2008 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

"Arg1" is not the job name but rather a job handle that you need to establish and DSJ.ME is short for 'the current job'. See DSAttachJob and DSDetachJob.
by chulett
Tue Jul 08, 2008 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job parameters
Replies: 0
Views: 765

Something will need to determine the current date and pass it to the job in question. Typically, that would be a Sequence job using a Routine Activity stage to get the date in your desired format.
by chulett
Tue Jul 08, 2008 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

Looks like a two-part effort. First use DSGetJobInfo with an InfoType of DSJ.JOBFULLSTAGELIST, then loop through the results and call DSGetStageInfo with DSJ.LINKLIST.
by chulett
Tue Jul 08, 2008 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Max Sequence Value to SCD Stage
Replies: 9
Views: 2251

We know. The answer is out there if you search as suggested. I don't see the need to spell it out one more time when a moment of effort on your part would reveal all. :?
by chulett
Tue Jul 08, 2008 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Max Sequence Value to SCD Stage
Replies: 9
Views: 2251

Search the forums for "ParamValue/Limitvalue is not appropriate" - this issue has been discussed a bajillion times.
by chulett
Tue Jul 08, 2008 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CONVERSION & CALCULATION
Replies: 1
Views: 788

Convert DATE1 to internal format using IConv. Use @DATE for the system date in the same format. Subtract. Add 1. Use OConv to get back to an 'external' date.
by chulett
Mon Jul 07, 2008 8:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What does it get better performance? Filter or transformer?
Replies: 7
Views: 3569

Re: What does it get better performance? Filter or transform

http://it.toolbox.com/blogs/infosphere/is-the-datastage-parallel-transformer-evil-9801 Ah yes, a Vincent blog. Keep in mind the fact that his observations are just over two years old now and - from what I understand - the stage has since been vindicated, rewritten to dramatically improve its speed.
by chulett
Mon Jul 07, 2008 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing User defined Env variable in dsjob -run
Replies: 6
Views: 2186

Yes, ones established in the user's environment outside of what the Project thinks exist. We just had a longish discussion of the need and the -local option, and that was put forth as the answer when a Project defined variable was overwriting a user level one and the poster want the user one to surv...
by chulett
Mon Jul 07, 2008 8:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing User defined Env variable in dsjob -run
Replies: 6
Views: 2186

Shouldn't have to. Properly set up, they will automatically be picked up from the environment and the environment variables will be specific to the project.
by chulett
Mon Jul 07, 2008 5:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending record count at the end of the file
Replies: 1
Views: 958

Sure! :D You can open the file in Append mode and write the record to it. Or capture the count in a separate file (with a link to an Aggregator, for instance) and then concatenate it in append mode to the main file after job. I'm sure there are other techniques. cat record_file >> detail_file Have y...
by chulett
Mon Jul 07, 2008 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

You're going to need to be more explicit. And what purpose does your example job serve? It is an example of what, in other words.
by chulett
Mon Jul 07, 2008 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Director error with a particular folder only
Replies: 8
Views: 2069

You have to ensure you have exclusive access to the Project - no running jobs, no orphaned client connections - nothing other than you can be in / connected to the project - or it won't work. Did you?
by chulett
Mon Jul 07, 2008 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Conversion warning
Replies: 3
Views: 1803

Doesn't seem like you have the decimal portion set up correctly: result type "decimal[1,0]" won't hold the contents of a 10 character string, hence the message.
by chulett
Mon Jul 07, 2008 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine in UNIX script
Replies: 8
Views: 2361

Maybe we can get it added to Quality Stage. :wink:
by chulett
Mon Jul 07, 2008 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine in UNIX script
Replies: 8
Views: 2361

As do I. Usually it's best to ask a more general 'how do I' question rather than focus on your perceived solution without giving us any clue about the problem you are trying to solve. We can usually get you on the right / much more better road to take you to your goal once we know what that is.