Search found 53125 matches

by ray.wurlod
Tue Sep 02, 2008 12:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: INT function in 7.5x2 vs 8.0.1
Replies: 4
Views: 1446

In hashed file NULL is always NULL. Internally in hashed files NULL is represented as Char(128), but the translation is automatic. It is only in text files that you need to specify how NULL is represented. My question was whether the default handling is the same in version 8.0.1 as it is in 7.5x2, b...
by ray.wurlod
Mon Sep 01, 2008 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: don't want to round a string to decimal
Replies: 9
Views: 1842

Keep experimenting. Curiously enough, we don't know all the answers. There are known unknowns, and there are unknown unknowns.

Post your results.
by ray.wurlod
Mon Sep 01, 2008 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of UtilityHashLookup
Replies: 7
Views: 2363

Unable to view full sized image. "Click here" had no effect. Using IE6.

Can you show as text, between code tags? Or at least the definition of, say, the K1 column?
by ray.wurlod
Mon Sep 01, 2008 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: INT function in 7.5x2 vs 8.0.1
Replies: 4
Views: 1446

Have you specified different NULL mapping in the job? What is the default null mapping in each version (I don't have 8.0.1 where I am)?
by ray.wurlod
Mon Sep 01, 2008 9:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: don't want to round a string to decimal
Replies: 9
Views: 1842

Did you try floor as the rtype?
by ray.wurlod
Mon Sep 01, 2008 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to mark a job as FINISHED
Replies: 7
Views: 2046

Why would you want to? What would be the ramifications if you were to mark a job as finished but, in reality, it was still running?
by ray.wurlod
Mon Sep 01, 2008 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is right outer join possible in lookup stage
Replies: 3
Views: 5769

Right outer join is not possible with a Lookup join. If you reverse the sense of the stream and reference inputs and do a left outer join (rule is "Continue") then you have a functional equivalent. However, this is not feasible if you have multiple reference inputs. You need to use a Join stage in t...
by ray.wurlod
Mon Sep 01, 2008 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of UVBackup and UVRestore
Replies: 37
Views: 14475

Yes, a full restore to a clean system will reinstate whatever it was that was backed up - in your case the 7.5 system.

The move to version 8.0 involves many things but, as far as DataStage projects are concerned, export/import is the method of choice.
by ray.wurlod
Mon Sep 01, 2008 6:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of UtilityHashLookup
Replies: 7
Views: 2363

1) No. If anything there is a slight disadvantage. 2) Unless you have specified a different key separator character (and if you don't know how to, you haven't) you separate the column values with text mark characters. In your example the expression would be of the form K1 : @TM : K2 : @TM : K3 In pa...
by ray.wurlod
Mon Sep 01, 2008 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import server routine using command line
Replies: 5
Views: 1851

Why not use the DataStage Manager client? That's what it's for (among other things).
by ray.wurlod
Mon Sep 01, 2008 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect DB2 Server via DB2 Enterprise Stage
Replies: 6
Views: 2222

Re: Unable to connect DB2 Server via DB2 Enterprise Stage

... but now a new patch named AIX 5.3 ML-07 SP-04. The problem infact came after the new patch installed. How to avoid stating the bleeding obvious...? If you want urgent help sign up with your support provider for premium service and learn the true cost of "urgent". DSXchange is an all-volunteer s...
by ray.wurlod
Mon Sep 01, 2008 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: don't want to round a string to decimal
Replies: 9
Views: 1842

There are four rtype arguments you can use with decimal processing; ceil, floor, round_inf and trunc_zero. The default is trunc_zero.

Read about them in Appendix B of the Parallel Job Developer's Guide for more information.
by ray.wurlod
Mon Sep 01, 2008 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Use Userdefine Environment Variables into the Dsjob c
Replies: 6
Views: 2883

The only way you can specify different environment variable names IS to specify different environment variable names. Otherwise you'd need to create a reference to something that contains the new environment variable name, and a means of evaluating that reference so as to decode the environment vari...
by ray.wurlod
Mon Sep 01, 2008 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of UVBackup and UVRestore
Replies: 37
Views: 14475

Restoring from a complete backup should re-create all the components including the jobs. You ought not to need to do anything else.
by ray.wurlod
Mon Sep 01, 2008 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid update query
Replies: 10
Views: 3202

No. UPDATE is, by its very nature, slow. Think about all the things UPDATE has to do.