Search found 53125 matches

by ray.wurlod
Mon Jun 15, 2015 6:16 pm
Forum: General
Topic: 1 question in Datastage assessment. help thanks.
Replies: 10
Views: 1850

$ENV, $PROJDEF and $UNSET are not environment variables.

They are reserved tokens that can be provided as default values for job parameters that are environment variables.
by ray.wurlod
Mon Jun 15, 2015 6:14 pm
Forum: General
Topic: 1 question in Datastage assessment. help thanks.
Replies: 10
Views: 1850

Operating system environment variables ARE case sensitive.
by ray.wurlod
Fri Jun 12, 2015 3:15 pm
Forum: General
Topic: Listing jobs called in a Sequence Job (automatically)
Replies: 7
Views: 5020

There is a log entry called "Summary of Sequence Run" near the end of the sequence's log.

Otherwise you need to create a recursive routine. I have one somewhere - I'll see if I can dig it out.
by ray.wurlod
Fri Jun 12, 2015 2:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file truncating integer
Replies: 1
Views: 1310

The Sequential File stage scans the input stream until it finds a character that isn't part of an integer (or a delimiter) and returns that. Then it scans to find the next field or record delimiter. So it's working as designed. Technically, the value "1 2" is NOT an integer, so maybe you n...
by ray.wurlod
Fri Jun 12, 2015 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: hex-string to binary
Replies: 8
Views: 3807

Try using Iconv() function with "MB" conversion.
by ray.wurlod
Fri Jun 12, 2015 2:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with nChar in Datastage 11.3
Replies: 4
Views: 4418

Welcome aboard.

What are the NLS settings for this stage/job?
by ray.wurlod
Fri Jun 12, 2015 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Packed Decimal Issue
Replies: 14
Views: 4327

Does the metadata on the Columns grid specify scale = 2?
by ray.wurlod
Wed Jun 10, 2015 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: combining marks are not in canonical order
Replies: 3
Views: 8035

Start by reading this W3 article on canonical normalization issues. It may give some insight into where in your data the problem lies.
by ray.wurlod
Tue Jun 09, 2015 8:04 pm
Forum: General
Topic: [ParamValue/Limitvalue is not appropriate] - For Null values
Replies: 2
Views: 2878

That error message is coming from a Job activity, or from a call to the dsjob command line.

Job parameters may not be null. You need to intercept the value and convert it from null to something appropriate, such as "". One way would be to interpose a User Variables activity.
by ray.wurlod
Tue Jun 09, 2015 8:00 pm
Forum: General
Topic: remove strange character
Replies: 9
Views: 3619

If the code point value is over 255 you will need UniChar() function rather than Char() function.

Code: Select all

 if DSLink253.PER_FIRST_INITIAL = unichar ( 65533 ) then 'ok ' else 'ko' 
by ray.wurlod
Tue Jun 09, 2015 7:59 pm
Forum: General
Topic: Craig Hits 40000 Posts!!!
Replies: 6
Views: 1536

Craig Hits 40000 Posts!!!

Been a long time, been a long time, been a long lonely, lonely, lonely, lonely time...

Amazing effort since he hasn't actually played with DataStage for four years.
by ray.wurlod
Tue Jun 09, 2015 1:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generation
Replies: 2
Views: 1986

There are three job designs using the SKG stage.

A job with no input or output link will create the state file.

A job with an input link only can be used to initialize the state file.

A job with an output link only can be used to deliver surrogate key values.
by ray.wurlod
Tue Jun 09, 2015 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF dropping comp3
Replies: 17
Views: 3765

It might help to see the metadata so that the record length can be established, then you can use that information to identify whether any data are actually missing.
by ray.wurlod
Tue Jun 09, 2015 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF dropping comp3
Replies: 17
Views: 3765

No idea.

You're not showing us the same data in each file. "Looks like" they may be, but the same they're not.
by ray.wurlod
Mon Jun 08, 2015 6:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage not detecting a record already exists
Replies: 3
Views: 2113

What has changed since it was working properly? (Hint: "nothing" is not the correct answer.)