Search found 53125 matches

by ray.wurlod
Sun Jun 08, 2008 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: External Filter Error
Replies: 25
Views: 5176

Provided viewing of generated OSH is enabled in the project, you can view the generated OSH from the Generated OSH tab in the Job Properties dialog.
by ray.wurlod
Sun Jun 08, 2008 11:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance query
Replies: 6
Views: 1707

Why not include an ORDER BY clause in the extraction SQL then, in your Sort stage, you can set the sort mode to "don't sort (already sorted)". No scratch space is taken by such a Sort stage.
by ray.wurlod
Sun Jun 08, 2008 11:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where to find job schedule info in xmeta DB?
Replies: 14
Views: 12953

There IS scheduling information somewhere in XMETA. I infer this because many products (not just DataStage) can use "the IFS schedule in IBM Information Server".
by ray.wurlod
Sun Jun 08, 2008 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS Mapping error
Replies: 5
Views: 3229

vsi wrote:Hi, Iam also getting same problem while loading in seq file, did u got any resolution for this, please let me know.

Thanks,
VSI

U did not report any problem.

The second person personal pronoun in English is spelled "you".
by ray.wurlod
Sun Jun 08, 2008 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job reads its own link counts
Replies: 12
Views: 5537

This is "hijacking the thread" - the question is unrelated to the subject of this thread. Please post a new topic.
by ray.wurlod
Sun Jun 08, 2008 11:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in loading seq file
Replies: 1
Views: 1034

First impression is that there is a mismatched quote.
by ray.wurlod
Sun Jun 08, 2008 11:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function in datastage to find date after 6 months
Replies: 10
Views: 17363

... or simply rewind the date until it is valid.
by ray.wurlod
Sun Jun 08, 2008 11:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Perfomance tuning advice?......
Replies: 7
Views: 1582

Right. Go over the dreaded '2GB Barrier' and performance is dramatically affect because the hashed file will corrupt internally. Then, as noted, it's time to switch to 64bit hashed files. Close, but no cigar. The right time to switch is before the hashed file gets to 2GB. This means that you monito...
by ray.wurlod
Sun Jun 08, 2008 11:16 pm
Forum: General
Topic: Arnd Hits 10K
Replies: 13
Views: 7403

Arnd Hits 10K

10000 posts from the fingers of Arnd Wussing. Way to go (wherever you are)!
by ray.wurlod
Sun Jun 08, 2008 11:14 pm
Forum: General
Topic: Difference between Datastage 7.5 and 8.0
Replies: 1
Views: 1065

Welcome aboard.

This question has been addressed over the past little while, so a Search ought to be the first thing you do.

Version 8.0 is hugely different from version 7.5, as your Search results will show.
by ray.wurlod
Sun Jun 08, 2008 11:11 pm
Forum: General
Topic: Unable to monitor the job
Replies: 1
Views: 1132

Please post what the resolution was, even it was as simple as realizing that APT_NO_JOBMON means exactly what it says - no job monitoring.
by ray.wurlod
Sun Jun 08, 2008 11:09 pm
Forum: IBM QualityStage
Topic: Controlling match specification from an XML file
Replies: 1
Views: 1242

Currently I don't believe so, but it impresses as a possibly useful idea. Why not formalize how you believe it ought to work, then post as an enhancement request?
by ray.wurlod
Thu Jun 05, 2008 8:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job abort with an error never seen before
Replies: 4
Views: 1587

You can create a Sequencer simply by dragging its icon into a Job Sequence.
by ray.wurlod
Thu Jun 05, 2008 8:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling SQL Server Stored Procedure
Replies: 6
Views: 1620

If you call your stored procedure in an ODBC stage all rows delivered to the stage will be passed as inputs to the stored procedure.
by ray.wurlod
Thu Jun 05, 2008 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to insert unix new line in between the single records?
Replies: 1
Views: 1085

Run the UNIX command split over the file. Or, instead of outputting one 1800-character string, output an 1802-character string with two Char(10) characters inserted. Left(InLink.TheString,600) : Char(10) : InLink.TheString[601,600] : Char(10) : Right(InLink.TheString,600&...