Search found 53125 matches

by ray.wurlod
Tue Apr 10, 2007 10:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going in air
Replies: 11
Views: 3483

What does that message tell you?
by ray.wurlod
Tue Apr 10, 2007 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling C program from DataStage Job
Replies: 16
Views: 6469

Job properties.

To get there, click the fifth tool from the left in Designer (version 7.5 or earlier), press Ctrl-J or choose Job Properties from the Edit menu.
by ray.wurlod
Tue Apr 10, 2007 10:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data format conversion issue
Replies: 3
Views: 1290

Does the fix_zero need to be in quotes? What do you believe that fix_zero does?
by ray.wurlod
Tue Apr 10, 2007 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate sequence number in Parallel Job
Replies: 8
Views: 2429

How are you storing it from the last job?

What precisely is your requirement? Write an accurate and complete specification of your requirement. You may be surprised; just doing that may make you think of a solution.
by ray.wurlod
Tue Apr 10, 2007 7:22 pm
Forum: IBM QualityStage
Topic: error Standardize
Replies: 7
Views: 2543

The wc command should give you three numbers. I am interested in all three. Assuming you have given me a character count, I observe that 396021830 / 4557 is not a whole number. But, when we allow for the line terminator character, 396021830 / 4558 is a whole number (86885). So that's the first of th...
by ray.wurlod
Tue Apr 10, 2007 7:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate sequence number in Parallel Job
Replies: 8
Views: 2429

There is even a Surrogate Key Generator stage in parallel jobs. The trick is to generate a sequence of values that is unique across all partitions. This you will discover how to do as a result of your search.
by ray.wurlod
Tue Apr 10, 2007 7:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel Issue
Replies: 5
Views: 2565

If one input has 90 columns, the second input must have 90 identically-defined columns.

You state that you create "dummy column" (singular). You need to create 89 dummy columns, not just one, before the Funnel stage will work.
by ray.wurlod
Tue Apr 10, 2007 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sql Server Upgrade
Replies: 4
Views: 1253

1. Validate them, to ensure that the connectivity and SQL are still valid.

2. Test them.
by ray.wurlod
Tue Apr 10, 2007 7:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple record structure flat file
Replies: 16
Views: 7659

You are right - mainframe jobs are restricted to what you can do on the mainframe using COBOL. Therefore, any decision making will need to be performed using DataStage components such as an External Routine stage.
by ray.wurlod
Tue Apr 10, 2007 7:09 pm
Forum: General
Topic: Convert to day of week using date field, like MOn, Tue , Wed
Replies: 4
Views: 1401

WeekdayFromDate() will return the weekday number (based on your business rules for the start of the week). You first need to extract the date portion from the timestamp. Once you have the weekday number you can use Field() to perform a lookup from a string constant containing a delimited string of t...
by ray.wurlod
Tue Apr 10, 2007 7:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Palette is empty
Replies: 5
Views: 3069

This is a known issue when you have certain incompatible combinations of versions of client and server software. One known combination that will generate it is version 7.5x2 client and 7.5.1A server. Is the Palette totally empty or is there one icon that can expand to show all stage types? Is the St...
by ray.wurlod
Tue Apr 10, 2007 1:57 pm
Forum: IBM QualityStage
Topic: error Standardize
Replies: 7
Views: 2543

What is the size (in characters) of the MALADDR file?

Code: Select all

wc /Ascential/QualityStage/Projects/DEDUPLI/Data/MALADDR 
by ray.wurlod
Tue Apr 10, 2007 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple record structure flat file
Replies: 16
Views: 7659

Because the mainframe environment does not have the same "command line" concept as UNIX, your best approach is to pre-process the file with a very simple DataStage job that counts the rows (as described earlier). Park the row count somewhere (a file, probably) that you can read to make the decision ...
by ray.wurlod
Tue Apr 10, 2007 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2 Databases
Replies: 1
Views: 773

Have you tried it? I suspect there may be some issues because DB2INSTANCE environment variable can only have one value set at a time. There is a manual available (currently in its third version) on connectivity to DB2. It's an invaluable item of ammunition for your armoury. Search the forum to find ...
by ray.wurlod
Tue Apr 10, 2007 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exec Command Stage Output
Replies: 9
Views: 2336

It's not a numeric loop you need here - it's the other one, a "list of things" loop. Your delimiter character can be specified as newline ("\n").
If the command is ls may I recommend the -1 option so that you get one filename per line in the output?