Search found 53125 matches

by ray.wurlod
Mon Mar 26, 2007 4:48 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Profile Stage Documents
Replies: 1
Views: 2538

IBM offer a training class, code DX710, from which you take away a training manual plus lab exercises.
by ray.wurlod
Sun Mar 25, 2007 8:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: implict conversion in sequential stage
Replies: 4
Views: 1215

Now we need to know the data type specified for your single field. I would imagine, as you did, that if it's integer then the rows containing non-numeric characters should be dropped or sent along a reject-handling link. I have reproduced this, it also occurs with the record delimiter property set t...
by ray.wurlod
Sun Mar 25, 2007 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation based on Condition
Replies: 8
Views: 4520

You can do that in DataStage also, though why I have no idea. The system variable that you must use is @NULL.STR. For example: If IsNull(A) Then @NULL.STR Else A : If IsNull(B) Then @NULL.STR Then B or, more simply: NullToValue(A, @NULL.STR) : NullToValue(B, @NULL.STR)...
by ray.wurlod
Sun Mar 25, 2007 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset dose not exist
Replies: 3
Views: 902

It is not possible, it seems, to create a Data Set with zero records. Add a dummy row to each, and ignore it when processing. Submit an enhancement request to IBM, through here or through your support provider.
by ray.wurlod
Sun Mar 25, 2007 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: implict conversion in sequential stage
Replies: 4
Views: 1215

It is obvious WHAT is happening, WHY is far less apparent. What is the field delimiter, quote and final delimiter character specified? Please also advise the record delimiter property value. Then we can try to reproduce.
by ray.wurlod
Sun Mar 25, 2007 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATA STAGE
Replies: 2
Views: 965

The only possible explanation is that whatever you are doing is inserting the zeroes. With such a vague description (and even vaguer subject) it is impossible to diagnose more accurately than that. The computer does precisely what your programming tells it to do. Therefore, if you need more focussed...
by ray.wurlod
Sun Mar 25, 2007 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation based on Condition
Replies: 8
Views: 4520

You can not concatenate @NULL to anything without the result being null. The middle condition of your expression would do A:@NULL, as you noted. What you really need is If Len(A:B) = 0 Then @NULL Else A:B To avoid calculating it twice, you could evaluate A:B in a stage variable. This solutio...
by ray.wurlod
Sat Mar 24, 2007 10:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special character !! ... ascii value "20" ?
Replies: 15
Views: 3975

The hashes might be being put in by DataStage, if that's the pad character setting. If the table definitions were imported from sequential files, that is a significant possibility.
by ray.wurlod
Sat Mar 24, 2007 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special character !! ... ascii value "20" ?
Replies: 15
Views: 3975

Using a HEX EDITOR :roll:
by ray.wurlod
Sat Mar 24, 2007 4:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Installation on UNIX
Replies: 7
Views: 1625

Wait...
leprechauns are green
so they can't be leprechauns at IBM

little blue men?
Nac Mac Feegle!!!
by ray.wurlod
Sat Mar 24, 2007 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Installation on UNIX
Replies: 7
Views: 1625

You will not only need a different CD, you will also need a different licence.

They will probably give you the CD.

Be prepared to hand over several buckets of cash to buy the licence.
by ray.wurlod
Sat Mar 24, 2007 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to funnel multiple links into single output link ?
Replies: 11
Views: 3971

There will always be an overhead. You cannot process large (or even small) volumes of data without demanding some resources to do so. Simple economics. Try a number of techniques, benchmark and measure them in your environment, and make your choice based upon those results. "There ain't no such thin...
by ray.wurlod
Sat Mar 24, 2007 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Default Host Name
Replies: 1
Views: 830

No.

You must specify the server hostname (or IP address) to which you wish to connect your client.

The clients "remember" (via Registry entry) the most recently successfully used hostname entry, and displays this in the hostname field when re-connecting.
by ray.wurlod
Sat Mar 24, 2007 1:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in INSTALLATION OF DATA STAGE
Replies: 3
Views: 1213

You already have it.

Read the help on the FORMAT command, in a CMD shell.
by ray.wurlod
Sat Mar 24, 2007 1:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in INSTALLATION OF DATA STAGE
Replies: 3
Views: 1213

You already have it.

Read the help on the FORMAT command.