Search found 4 matches

by sadnemous
Mon Sep 23, 2013 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert opd to Buildop Stage
Replies: 7
Views: 6641

Thank you jwiles :) for useful information. You have directed me right way. Now one of my team-mate developing a Perl script to convert our existing opd into proper formatted xml file so that we can import in DataStage Client. So, if anyone like me is trying to convert opd to buildop stage here are ...
by sadnemous
Mon Sep 23, 2013 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts giving this error
Replies: 2
Views: 3802

I was getting the same error but did not find any answer. Meanwhile I was trying to fix it. I found a way out. From the error log it seemed the error is related to some buffer. So what I did and worked for me is: 1. opened the properties page of the FTP Stage 2. selected the "Input" of the...
by sadnemous
Sat Aug 03, 2013 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert opd to Buildop Stage
Replies: 7
Views: 6641

That step is only an example ( OR rather simplest example)

Code: Select all

osh -echo "
  fc_ModifyLocation
  <  [ds] input.ds
  >| [ds] output.ds
"
My problem is with inrec: *; and outrec: *;
by sadnemous
Fri Aug 02, 2013 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert opd to Buildop Stage
Replies: 7
Views: 6641

Convert opd to Buildop Stage

Though we have datastage 8.5 (GUI) we use the power of parallel processing directly using osh script. e.g. simple script we write: osh -echo " fc_ModifyLocation < [ds] input.ds >| [ds] output.ds " After spending time, now I am really curious to switch GUI from terminal. I have been success...