Search found 15603 matches

by ArndW
Thu Mar 06, 2008 3:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find the path of the job?
Replies: 16
Views: 5266

Normally the paths used for files are runtime parameters so you can look it up in the log files, or use the dsjob command and a shell script to parse the path out.
by ArndW
Thu Mar 06, 2008 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence job in loop getting aborted
Replies: 12
Views: 3224

There is no builtin mechanism to do that. I would make a loop that runs through many iterations and then put a Execute Command or Routine Activity stage in which checks to see if the time condition has been reached, then branch and exit the loop.
by ArndW
Thu Mar 06, 2008 3:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Engine not running
Replies: 2
Views: 719

Craig,

at least you didn't get a message

"Sorry, Craig. I cannot open the pod bay doors"
by ArndW
Thu Mar 06, 2008 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date conversion
Replies: 5
Views: 936

A Date datatype has no format. How you display the Date column is dependant upon the display settings of your target system, that is where you need to look.
by ArndW
Thu Mar 06, 2008 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert of string
Replies: 4
Views: 1673

You can lookup the PIVOT stage or could write your own DataStage routine like below: Combiner(ColA,ColB) EQUATE LF TO Char(10) Ans = '' ColACount = DCOUNT(ColA,',') ColBCount = DCOUNT(ColB,',') IF ColACount#ColBCount THEN Ans = 'Error, counts do not match' ELSE FOR i ...
by ArndW
Thu Mar 06, 2008 2:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find the path of the job?
Replies: 16
Views: 5266

The only way to transfer jobs between projects (regardless of what server they are on) is via the DataStage export/import methods. This export file, either in .dsx native format or as .xml, can then be ftp'd.

Or are you looking at the data files used in DataStage?
by ArndW
Thu Mar 06, 2008 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: config db2 server and Datastage EE on IBM AIX
Replies: 18
Views: 4796

When you run a job, the complete environment is put into one of the first log entries. Run your job and check to make 100% sure that your LIBPATH at runtime contains "/Datastage/DSEngine/lib"
by ArndW
Thu Mar 06, 2008 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Engine Statu = Not Running
Replies: 4
Views: 985

That is quite strange. What UNIX are you running on? If you execute "$DSHOME/bin/smat -x" do you get output? Also, if you attach to $DSHOME then issue "bin/uvsh" do you get the ">" prompt in UniVerse (if yes, enter "QUIT" to exit.
by ArndW
Thu Mar 06, 2008 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ related Job - Lost one message in every run
Replies: 3
Views: 1146

That is quite strange. Do you know if you are losing the 1st or the last message?
by ArndW
Thu Mar 06, 2008 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date conversion
Replies: 5
Views: 936

If you are getting a "date" data type then the data is in internal binary form and the field actually has no format at all.
by ArndW
Wed Mar 05, 2008 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error call in progress
Replies: 4
Views: 1504

Is this a simple or complex query and is the table partitioned?
The Oracle error message is pretty clear:
The OCI call was invoked when another call on the connection was in progress.
.
by ArndW
Wed Mar 05, 2008 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing 7.1 jobs to 7.5
Replies: 2
Views: 798

It will work with no need to modify anything.
by ArndW
Wed Mar 05, 2008 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error call in progress
Replies: 4
Views: 1504

The problem is most likely in Oracle, not in DataStage. Take your SQL from datastage and use your favorite access tool (SQLPlus,TOAD,etc.) and you will see that you get the same error.
by ArndW
Wed Mar 05, 2008 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Reading
Replies: 9
Views: 2917

Checking "first line is column names" makes DS skip that line - regardless of contents or format.
If you have multiple empty lines then pre-process as Ray suggested. You can even do a simple UNIX "sed '/^$/d' InFile.txt >OutFile.txt"