Search found 53125 matches

by ray.wurlod
Tue Jun 13, 2006 5:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find Max Sequence Number from a record
Replies: 13
Views: 4150

"Count of delimited fields" technique.

Code: Select all

DCount(InLink.Field, "|")
by ray.wurlod
Tue Jun 13, 2006 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I import Cobol EBCDIC file definitions?
Replies: 11
Views: 3806

You must specify the column in which the 01 level item begins. By default it's set to column number 8. This is not the case with your FD.

Etiquette Note
It would have been better to start a new thread than to resurrect this very old one, even though the topic is accurate for your problem.
by ray.wurlod
Tue Jun 13, 2006 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Field Function Help
Replies: 10
Views: 1749

On the Format tab of your Sequential File stage what is defined to be the representation of NULL? Is this overridden for any of the columns in the Columns grid. Try changing the representation of NULL to, say, <NULL> then, in your expression, testing for a zero length string (or even for zero).
by ray.wurlod
Tue Jun 13, 2006 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find Max Sequence Number from a record
Replies: 13
Views: 4150

"Final delimited substring" technique.

Code: Select all

Field(InLink.Column, "|", Count(InLink.Column, "|") + 1, 1)
by ray.wurlod
Tue Jun 13, 2006 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Projects on AIX - some work, some don't
Replies: 6
Views: 1349

What error codes are you getting? Grab the Intercall manual from the UniVerse web site - it has the most comprehensive list of connectivity error codes.

I have a vague recollection that you can't install DataStage on symbolic links - are there any symbolic links involved?
by ray.wurlod
Tue Jun 13, 2006 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Please help me out
Replies: 4
Views: 889

Individual DELETE operations tend to be very time consuming. There are also some known issues with DELETE on DB2 (you can read about them on the parallel jobs forum). Contact your support provider to determine whether a patch is available for server edition. You mention Enterprise stage. Does this m...
by ray.wurlod
Tue Jun 13, 2006 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can you multiple compile sequences?
Replies: 9
Views: 1964

What version of DataStage?
by ray.wurlod
Tue Jun 13, 2006 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setup -ds users
Replies: 5
Views: 1616

Roles are assigned to groups, not to individuals. Please check your work. If you have properly assigned the DataStage Operator role, and that individual is not in a group to which the DataStage Developer role is allocated, then that individual will not be able to open jobs in Designer.
by ray.wurlod
Tue Jun 13, 2006 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate timestamp only if condition met.
Replies: 15
Views: 5951

You must pass a timestamp (or NULL) if you are passing the row. The only way you can avoid supplying a value is to generate an UPDATE in which the timestamp column is not mentioned, or to avoid passing the entire row.
by ray.wurlod
Tue Jun 13, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate Lookup Values
Replies: 7
Views: 2232

Make sure the hashed file is loaded with the first value (however that is defined). Usually, as others have noted, this can be accomplished by sorting the stream of data being loaded into the hashed file in reverse order; hashed file records are destructuvely overwritten, so it is the last written v...
by ray.wurlod
Tue Jun 13, 2006 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Issue
Replies: 17
Views: 3906

How many CPUs are in your DataStage server machine? If this is a small number, and you are asking it to do so many things at once, is it any wonder it reports being overloaded? Can you juggle two balls? Three? Twelve?!! A design such as that below guarantees that at most two jobs at a time will be r...
by ray.wurlod
Tue Jun 13, 2006 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MVS edition verses 7.x server jobs
Replies: 4
Views: 1032

Mainframe jobs in the MVS edition generates COBOL source code, and JCL for getting that compiled and run on your OS/390 system. Server edition does not have the capacity to create mainframe jobs. You still need some kind of process to get the data from the mainframe. Aditya has suggested one way; mo...
by ray.wurlod
Tue Jun 13, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 UDB stages
Replies: 5
Views: 1518

You can set up DB2 Connect to do this. Ask your DBA.
by ray.wurlod
Tue Jun 13, 2006 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: if FileB is not empty propagate FileA
Replies: 33
Views: 4705

If you're going to use test -z filename you are more interested in the exit status (SystemReturnCode) than in the output o the test command (which is typically silent).
by ray.wurlod
Tue Jun 13, 2006 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to retrieve Cleared Log Entries.
Replies: 5
Views: 1138

And even if there were, it would turn out to be dsapi_slave if initiated from a Director client.