Search found 15603 matches

by ArndW
Tue Jun 17, 2008 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is there is any stage or option that we can do arthematic fu
Replies: 3
Views: 652

You had it in your original post, the Transform stage will let you do mathematical operations.
by ArndW
Tue Jun 17, 2008 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from COBOL file
Replies: 5
Views: 949

COMP-3 is also known as BCD where each position is encoded in 4bits. Another 4 bits are used for the sign and the result is padded to an even byte boundary. If you declare it as binary integer, then the 16 bits are used as an excess-128 representation and you get the negative number.
by ArndW
Tue Jun 17, 2008 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Number
Replies: 27
Views: 8053

ag_ram, your list command is incorrect. The syntax of the list command is | SYNTAX | | | | LIST [DICT | USING [DICT] dictname] filename [records | | | FROM n] [selection] [output.limiter] [sort] [output] | | [report.qualifiers] note, the first mandatory parameter is the filename. It just so happens ...
by ArndW
Tue Jun 17, 2008 2:43 am
Forum: General
Topic: Datastage Installation in laptop
Replies: 15
Views: 5968

127.0.0.1?
by ArndW
Tue Jun 17, 2008 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDate Conversion Problem/issue with 7.5.1 to 7.5.2
Replies: 8
Views: 4611

What is the data type and lengths of both the source and the target columns?
by ArndW
Tue Jun 17, 2008 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from COBOL file
Replies: 5
Views: 949

That is not the COBOL definition, but is close and might be enough. I don't like the "0c" hex at the beginning which would indicate a leading sign which is nonstandard. If your COBOL doesn't have a leading sign specificed then you probably already have a wrong position. Also, the data type is 2 digi...
by ArndW
Tue Jun 17, 2008 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with DSJOB command
Replies: 8
Views: 2775

If you go to your director, double click on the job name and then paste the output to this thread we might see something, that will contain the parameters used by the job.
by ArndW
Tue Jun 17, 2008 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from COBOL file
Replies: 5
Views: 949

What is the COBOL field definition for this column? It looks like a non-standard COMP-3 with leading sign from the binary.
by ArndW
Tue Jun 17, 2008 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file
Replies: 7
Views: 1537

That is a function of many databases. With hashed files the key is "hashed" into a number which corresponds to a hashed file group (or bucket). When the file is read in unsorted order it will read keys from each group and this will give you the "shuffled" order you see.
by ArndW
Tue Jun 17, 2008 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Number
Replies: 27
Views: 8053

The LIST command is incorrect, ag_ram

Code: Select all

LIST DS_JOBS ID.SUP JOBNO WITH NAME EQ '{YourJobName}'
by ArndW
Tue Jun 17, 2008 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sort
Replies: 6
Views: 1563

Can you explain what didn't work? DataStage server internal time is an integer (number of seconds since midnight) so it will sort correctly. If you somehow declare this as a character then it will not sort appropriately, so part of the question back is to ask how you are sorting.
by ArndW
Tue Jun 17, 2008 1:17 am
Forum: General
Topic: Datastage Installation in laptop
Replies: 15
Views: 5968

Looks like you entered an empty hostname.
by ArndW
Tue Jun 17, 2008 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Number
Replies: 27
Views: 8053

I've changed the post to be non-premium.
by ArndW
Tue Jun 17, 2008 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with DSJOB command
Replies: 8
Views: 2775

No $ sign should be used. Are those "0" or "O" in your parameter name?
by ArndW
Tue Jun 17, 2008 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Number
Replies: 27
Views: 8053

I just realized that this thread is in the Server forum and the solution with the job number that I posted was for Parallel jobs; so you are quite correct that it was the wrong answer. You can get the job number by going into TCL or using the Admin command line and issuing a "LIST" or "SELECT" state...