Search found 42189 matches

by chulett
Tue Jan 25, 2011 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement this logic
Replies: 3
Views: 1641

What exactly does "ignore 6200 event" translate to? Don't write it to your output? And are we literally hard-coding things for these "event codes" or would it be more proper to mention the first v. the second v. the third? :?
by chulett
Tue Jan 25, 2011 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic for Implementing Months
Replies: 7
Views: 2321

Construct an otherwise static date from your month number, then StringToDate() followed by DateToString() using just %mmmm for the format mask.
by chulett
Tue Jan 25, 2011 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: xml output
Replies: 10
Views: 4258

You have a closing tag, a valid one but just not the one you think it needs to be. You can change the option from <tag/> to <tag></tag> but they are equivalent.
by chulett
Mon Jan 24, 2011 6:26 pm
Forum: General
Topic: How to find Dates of job import & last changes/edits ?
Replies: 1
Views: 1083

Do an exact search here for "DS_AUDIT" and see if that is what you are looking for. Hopefully it is! :wink:
by chulett
Mon Jan 24, 2011 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Blank spaces
Replies: 3
Views: 1948

Or compare against a string of all spaces.
by chulett
Mon Jan 24, 2011 2:38 pm
Forum: General
Topic: dsjob not working through crontab
Replies: 10
Views: 3204

... something that would require a wrapper script to accomplish. :wink:
by chulett
Mon Jan 24, 2011 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

Wasn't even gonna go there.
by chulett
Mon Jan 24, 2011 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract and Load many tables - Short and fast
Replies: 8
Views: 3092

An exact search for "ParamValue/Limitvalue is not appropriate" will tell you what is causing that.
by chulett
Mon Jan 24, 2011 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

OK... when you set the field to NULL (not a space ) it will show up in the file as whatever you put in for the null value - in this case as your 'required space'.
by chulett
Mon Jan 24, 2011 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

Then you missed something. Tell us exactly what you did to correct this - how you made sure the output field was null at the right time and what exact properties you set for that field.
by chulett
Mon Jan 24, 2011 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SESSIONS_PER_USER error
Replies: 1
Views: 2373

35 isn't going to cut it, as you are seeing. I'm guessing it will need to be much higher, especially if your jobs all connect via the same user. And you set that on the Oracle side, not in DataStage. At a high level - take the number of the Oracle stages from all currently running jobs and multiple ...
by chulett
Mon Jan 24, 2011 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

Re: POPULATE SPACE TO THE OUTPUT COLUMN

ajithaselvan wrote:It can be nullable. But it can not be representated as string.
Actually, everything in a file is a string so it can. Set it to NULL and then edit the column so the 'null value' property is the appropriate number of spaces.
by chulett
Mon Jan 24, 2011 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

Ajitha S - please don't post in all capital letters, it is considered SHOUTING. I corrected your post Subject for you, so more of just an FYI. Thanks.
by chulett
Mon Jan 24, 2011 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

srinivas.g wrote:set $apt_oracle_preserves_blanks is true and try....
Haven't seen any mention of Oracle yet...
by chulett
Mon Jan 24, 2011 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populate space to the output column
Replies: 16
Views: 4579

Re: POPULATE SPACE TO THE OUTPUT COLUMN

ajithaselvan wrote:I need to populate space to the output column.The data type for the column is float(2,5). Kindly help me to resolve.
The answer is simple - it cannot be done. Get a new requirement... for example, is the field nullable? Can it be represented as a string?