Search found 53125 matches

by ray.wurlod
Fri Mar 09, 2007 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Control Process Failed
Replies: 61
Views: 15996

For example there really may be a bug in the software - a thing called a "null pointer", for example, pointing to a non-existent memory location. Segmentation violation can also occur if you try to shoehorn 15 characters into a Char(12) column, depending upon how well (or badly) the processing appli...
by ray.wurlod
Fri Mar 09, 2007 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bind Variable issues
Replies: 11
Views: 3690

:arrow: Guess which one of us is a trainer by profession?
by ray.wurlod
Fri Mar 09, 2007 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row as column
Replies: 9
Views: 1784

If I understand the requirement, it is to get the output column name from Column1 of the input, and the output column value from Column2 of the input. Is this a correct understanding?

Is the number of possible output column names small and finite, large and finite, or arbitrarily large?
by ray.wurlod
Fri Mar 09, 2007 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem reading the Oracle Table
Replies: 5
Views: 1720

Are there any newline characters in your user-defined SQL? I find that it (user-defined SQL) generally works best if there are none.
by ray.wurlod
Fri Mar 09, 2007 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dslockd issue
Replies: 18
Views: 4484

... because that's not what it does.
by ray.wurlod
Fri Mar 09, 2007 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Various Connection Types
Replies: 27
Views: 7900

The Two Secrets of Success

1. Don't tell everything you know.
by ray.wurlod
Fri Mar 09, 2007 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML
Replies: 9
Views: 3281

If you can describe exactly how you are attempting to undertake this task, we might be in a better position to offer coherent diagnosis. What stage types are you using? How did you import the metadata? Are you using default style sheets or customized ones? And so on.
by ray.wurlod
Fri Mar 09, 2007 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Job Design
Replies: 19
Views: 4129

If performance is being an issue, stage into text files and use sqlldr to get the data from there into the Oracle staging tables, perhaps in an after-job subroutine running ExecSH. You'll be amazed how much faster this can go. Don't use the ORABULK stage though - its performance is abysmal.
by ray.wurlod
Fri Mar 09, 2007 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bind Variable issues
Replies: 11
Views: 3690

In a lookup situation, only Key columns are bound to the parameter markers. Therefore, if you have three ? characters in your WHERE clause, you need three columns marked as Key. The first-named Key column (top-down in the Columns grid) substitutes for the first-occurring parameter marker, the second...
by ray.wurlod
Fri Mar 09, 2007 2:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow Writing to Hashed files
Replies: 37
Views: 7353

That's where "dynamic" hashed file comes in. It self-manages its space.

Clever, innit?
by ray.wurlod
Fri Mar 09, 2007 2:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Control Process Failed
Replies: 61
Views: 15996

The fault type codes are, most of the time, signal numbers. These are included in a signal.h file somewhere on your system. To find out which file it is, execute find / -name signal.h -print -exec grep SIGBUS {} \; 2> /dev/null You can then look through the file of signal numbers at your l...
by ray.wurlod
Fri Mar 09, 2007 2:24 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: XML input stage problem
Replies: 8
Views: 5967

Yep, that'd sure do it. Maybe you need to build a check for that situation into a job sequence? Perhaps an Execute Command activity (ping or something slightly more esoteric).

Just noticed an anagram.

Code: Select all

r, E Ostic  =~=  Esoteric   
:D
by ray.wurlod
Fri Mar 09, 2007 10:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: header and tailer sequential file
Replies: 7
Views: 1647

... or even as a filter command (without the filename) in a Sequential File stage, which will then read the stdout of sed
by ray.wurlod
Fri Mar 09, 2007 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Various Connection Types
Replies: 27
Views: 7900

:idea:
Using seat power one can work on laptop on flights.
Without seat power one can read or write, or use laptop on battery. I carry a spare battery so can get over eight hours use, which is enough for most flights.
by ray.wurlod
Fri Mar 09, 2007 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Log file for DSEE job
Replies: 5
Views: 1205

Change your run command to two commands.

Code: Select all

dsjob -run ... ; dsjob -logsum ... > logfile