Search found 53125 matches

by ray.wurlod
Thu Oct 21, 2010 9:57 pm
Forum: General
Topic: Adding new column to target table
Replies: 7
Views: 1669

Manager client, not Designer.
by ray.wurlod
Thu Oct 21, 2010 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying different groups based on column valeus
Replies: 9
Views: 1907

What's your expected output in the above example?
by ray.wurlod
Thu Oct 21, 2010 7:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file issue
Replies: 6
Views: 1677

There are no nulls in sequential files. Sequential files don't have data types, just text, so there are no nulls.

That said, it is often useful to specify how nulls are represented in sequential files. This can be done as a column property or as a global Format property.
by ray.wurlod
Thu Oct 21, 2010 7:32 pm
Forum: General
Topic: Adding new column to target table
Replies: 7
Views: 1669

In Manager client click on table definition to select it then click on the Usage Analysis took (it looks like a beaker) in the toolbar.
by ray.wurlod
Thu Oct 21, 2010 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying different groups based on column valeus
Replies: 9
Views: 1907

Your explanation is incomplete. G1 has three distinct values in Col3, as does G2. Am I understanding that correctly?
by ray.wurlod
Thu Oct 21, 2010 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the format
Replies: 4
Views: 1529

If you can identify the ASCII code points used you can generate these using the Char() function, and use that value to perform the lookup.
by ray.wurlod
Thu Oct 21, 2010 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String replacement
Replies: 4
Views: 2448

QualityStage using an xxADDR rule set will standardize these nicely.
by ray.wurlod
Thu Oct 21, 2010 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using "Build" - how does one write a log m
Replies: 9
Views: 4384

It won't work, because the log is either a hashed file or a table within XMETA.
by ray.wurlod
Thu Oct 21, 2010 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Close command-UPDATE
Replies: 4
Views: 1230

Pretty much any SQL, subject to the usual caveats you'd have from any other client utility - privileges for the connected user and so on.
by ray.wurlod
Thu Oct 21, 2010 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling
Replies: 2
Views: 1176

Don't worry about what View Data shows you - it converts your spaces to "NULL" specifically because you've specified that NULL is represented as spaces. Look in the file itself - all will be well.
by ray.wurlod
Thu Oct 21, 2010 4:27 pm
Forum: General
Topic: Adding new column to target table
Replies: 7
Views: 1669

Welcome aboard.

The technique you outline is valid. It might also be worthwhile performing a Usage (Where Used) Analysis on the table definition before modifying it, so you can be aware which other jobs touch it.
by ray.wurlod
Thu Oct 21, 2010 4:22 pm
Forum: General
Topic: Question about Datastage Routine
Replies: 1
Views: 867

My guess is permissions on the hashed file or one or more of its components.
by ray.wurlod
Thu Oct 21, 2010 4:21 pm
Forum: General
Topic: Read-Only access to Director
Replies: 3
Views: 1510

There is currently no role that prohibits running a job.
by ray.wurlod
Thu Oct 21, 2010 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using "Build" - how does one write a log m
Replies: 9
Views: 4384

You could always use system() and UVwrite!

(This (writing to log from a Build stage) is not something I've done.)
by ray.wurlod
Thu Oct 21, 2010 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add an header and trailer to a file through datastage
Replies: 4
Views: 3374

What a strange requirement (to do this with DataStage)! You should really do this with operating system commands and redirection operators. To embed those in DataStage is really a waste of resources.