Search found 53125 matches

by ray.wurlod
Wed May 09, 2007 4:24 pm
Forum: General
Topic: Sequential File
Replies: 11
Views: 4622

Have you installed the PACKs for Oracle Applications and PeopleSoft?
by ray.wurlod
Wed May 09, 2007 4:22 pm
Forum: Data Quality Best Practices
Topic: Copy files from one folder to another using.bat files
Replies: 2
Views: 10647

Try the /B switch with COPY. This implements a binary copy and does not append an end of file mark.
by ray.wurlod
Wed May 09, 2007 4:19 pm
Forum: IBM QualityStage
Topic: Error in QualityStage Job
Replies: 10
Views: 3524

It's a Word investigation that you're doing. There's something wrong with the classification table (xxxxxx.CLS) for the rule set that you are using. Could be a bug out of the box - check with your support provider. I'm assuming here that you have not yet applied any classification overrides.
by ray.wurlod
Wed May 09, 2007 4:15 pm
Forum: IBM QualityStage
Topic: Problem in running a Multinational Standardization job
Replies: 1
Views: 1035

Does the job only have an MNS stage, or are there other stages as well? Are your data sources fixed-width flat file? Are you executing in file mode or stream mode? Are you executing via the DataStage plugin, directly from QualityStage Designer or via a script? Answers to all of these might affect th...
by ray.wurlod
Wed May 09, 2007 1:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join multiple DB2 tables
Replies: 7
Views: 1568

In the database is usually better, because the join can leverage any indexes that may exist on the join keys.
by ray.wurlod
Wed May 09, 2007 1:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction type and Array list
Replies: 6
Views: 1655

In what stage type?
by ray.wurlod
Wed May 09, 2007 1:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Code and Error Handling
Replies: 3
Views: 1139

No.

However, if you call DataStage jobs using dsjob from a script, you can re-map the standard exit codes within that script.
by ray.wurlod
Wed May 09, 2007 12:58 am
Forum: General
Topic: Performing corelated subquery in datastage
Replies: 2
Views: 1588

The same rules apply in DataStage as in SQL. Can you effect the correlated subquery in your extraction SQL, thereby saving your brain the grief of reinventing a wheel that already exists?
by ray.wurlod
Tue May 08, 2007 8:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: releasing locks using datastage director Cleanup Resources
Replies: 6
Views: 3061

Search can direct you in the right direction. I answered an NLS_LANG question earlier today.
by ray.wurlod
Tue May 08, 2007 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequences
Replies: 2
Views: 1093

Welcome aboard. :D

You need to design what you've just described. The easiest way is for all jobs to load a staging area, rather than the final target. Then, only if all jobs complete successfully do you move the data from the staging area to the final target.
by ray.wurlod
Tue May 08, 2007 8:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error popped when Exporting Jobs
Replies: 9
Views: 3361

All error codes of the form 81xxx arise from the DataStage RPC mechanism. However, the underlying cause could be anything. That "the connection is broken" means usually that the connected client's agent process on the server (either dsapi_server or dsapi_slave) has terminated the connection. For exa...
by ray.wurlod
Tue May 08, 2007 5:48 pm
Forum: Site/Forum
Topic: 20,000 just around the corner?
Replies: 6
Views: 3361

20,000 just around the corner?

Just got mine. 8)
by ray.wurlod
Tue May 08, 2007 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not enough space
Replies: 3
Views: 4940

Do you have other file systems with lots more space? Create a configuration file that uses these as your disk resource, possibly in addition to what you currently have specified.
by ray.wurlod
Tue May 08, 2007 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not showing up link count
Replies: 6
Views: 1749

Or even whether the job monitor application (JobMonApp) is running.
by ray.wurlod
Tue May 08, 2007 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Errors on a Lookup Stage
Replies: 4
Views: 1309

NULLs can appear in the stream if a lookup fails and the lookup failed rule is Continue. The Lookup stage is then effectively performing a left outer join.