Search found 134 matches

by jweir
Thu Nov 04, 2010 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Numeric to Varchar
Replies: 8
Views: 2487

Converting Numeric to Varchar

Hello, I need to convert a numeric field into a varchar when I am loading into my DB2 target. I have tried the DecimalToString function, but returned blanks. I also got the same result when I tried the Char() function. I am extracting this field from SAP, which comes as a numeric. But my DB2 target ...
by jweir
Mon Oct 11, 2010 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting BIN1 (SAP) to ASCII using ABAP Extract
Replies: 3
Views: 1759

Converting BIN1 (SAP) to ASCII using ABAP Extract

Hello,

I have field in SAP that is being read using ABAP Extract stage. This field's data type is BIN1. How can I convert it to ASCII in datastage?
by jweir
Wed Sep 29, 2010 6:56 am
Forum: General
Topic: DataStage 8 Certification Exam - Sample Questions?
Replies: 7
Views: 5145

Yes, I know of those. I was seeing if anybody else had some...
by jweir
Tue Sep 28, 2010 2:00 pm
Forum: General
Topic: DataStage 8 Certification Exam - Sample Questions?
Replies: 7
Views: 5145

DataStage 8 Certification Exam - Sample Questions?

I am looking to become certified in the upcoming months, and I starting to collect study matierals. Does anyone have any good resources containing any sample questions?
by jweir
Tue Sep 28, 2010 1:49 pm
Forum: Enhancement Wish List
Topic: Data Preview
Replies: 5
Views: 18558

Well if you do, please let me know! I'd love to hear how it operates (if i don't get my hands on it first!)
by jweir
Tue Sep 28, 2010 8:55 am
Forum: Enhancement Wish List
Topic: Data Preview
Replies: 5
Views: 18558

Well, I suppose I was really leaning towards was mid-stream profiling. This is where you can debug your jobs mid-stream, rather than running the complete job and seeing what happened. I haven't actually got my hands on this yet, but I've been to a presentation and I was interested. I am hoping to ge...
by jweir
Tue Sep 28, 2010 7:06 am
Forum: Enhancement Wish List
Topic: Data Preview
Replies: 5
Views: 18558

Data Preview

I would like to see something alongs the lines of a Data Preview, like Informatica 9 has implemented.
by jweir
Tue Sep 14, 2010 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: An error occurred while loading the DB2 library entry points
Replies: 3
Views: 6987

An error occurred while loading the DB2 library entry points

Hello, I had a parallel job that was working yesterday, made some small changes, and re-ran the job and recieved this error: An error occurred while loading the DB2 library entry points main_program: Fatal Error: You may need to add the path to the DB2 client library ALGN to the appropriate environm...
by jweir
Fri Sep 10, 2010 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenate files in an Execute Command stage in Sequence
Replies: 3
Views: 1925

Concatenate files in an Execute Command stage in Sequence

Hello, I am trying to concatenate several files into one file in a execute command stage. I am successful in concatenating them in Unix, however not in DataStage. Below is what I have written in my execute command stage: Command: cat Parameter: #GetPROJDEFValues.$Target_file_location#cust_mstr_r3_* ...
by jweir
Wed Sep 08, 2010 1:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Padding a Stage Variable with zeros in front
Replies: 6
Views: 4186

I have used this logic, which is correct:

Str('0',3 - Len(Counter)) : Counter

Where 'Counter' is my stage variable.
by jweir
Wed Sep 08, 2010 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Padding a Stage Variable with zeros in front
Replies: 6
Views: 4186

"So it is unsure how many characters will be in the stage variable at a given time. Also, the stage variable has to be 3 characters long" The above statements are a perfect contradiction. It means that the variable has to be 3 chars long. But the counter will be an unknown length inside t...
by jweir
Wed Sep 08, 2010 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Padding a Stage Variable with zeros in front
Replies: 6
Views: 4186

Padding a Stage Variable with zeros in front

Hello, I am trying to pad a stage variable with zeros in front of it. This stage variable is a counter, but it is not static counter; it resets to zero often. So it is unsure how many characters will be in the stage variable at a given time. Also, the stage variable has to be 3 characters long, and ...