Search found 53125 matches

by ray.wurlod
Fri Jun 24, 2005 12:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find a routine whether that routine exist in project or not
Replies: 3
Views: 902

Search in DS_AUDIT, which can also tell you if the routine has been deleted.
by ray.wurlod
Fri Jun 24, 2005 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Sequencer
Replies: 6
Views: 1805

There's no documented limit on the number of Job Activities in a job sequence. What is the setting of your inactivity timeout in Administrator for this project?
by ray.wurlod
Fri Jun 24, 2005 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting tool
Replies: 4
Views: 1010

Bypass the startup macro when opening doc_tool.mdb. Hold down the Shift key when opening, or use F11. You need full copy of MS Access for this.
by ray.wurlod
Fri Jun 24, 2005 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic table loading
Replies: 8
Views: 1761

You create dynamic table definitions the same way you would in the database; that is, it's not possible without a lot of hacking.
by ray.wurlod
Fri Jun 24, 2005 12:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge
Replies: 7
Views: 1744

No
by ray.wurlod
Fri Jun 24, 2005 12:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence fails to compile ... but no error message
Replies: 3
Views: 1128

What's its status in Director after this?
by ray.wurlod
Fri Jun 24, 2005 12:10 pm
Forum: IBM QualityStage
Topic: QS Plugin reinstall?
Replies: 7
Views: 3687

No, but I've never had to reinstall. We installed everything up front.
by ray.wurlod
Fri Jun 24, 2005 12:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AFTER JOB: Error Executing DSAttach.....
Replies: 0
Views: 737

Tell us what's in the main job log.

Add more DSLogInfo debugging statements that tell you precisely what's happening.

:idea: Do it using a job sequence rather than in an after-job subroutine.
by ray.wurlod
Fri Jun 24, 2005 12:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom error 10819
Replies: 5
Views: 3123

"phantom" is DataStage's term for "background process". 10819 is the process ID (user number) of the process reporting the error. The actual error message suggests what the problem is and a possible underlying reason that writeSocket() failed is that the listener on the other end of the socket (JobM...
by ray.wurlod
Fri Jun 24, 2005 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to initialize importer
Replies: 4
Views: 2984

Just guessing here. The import operator is used for most connections to persistent data - its task is to convert from external, human readable, formats into the internal formats used in Data Sets, for example from sequential files and File Sets. So my guess is that there's something wrong with this ...
by ray.wurlod
Fri Jun 24, 2005 12:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: best practices
Replies: 5
Views: 1669

They can be downloaded from the Ascential eServices web site. Search the forum; somewhere there's a direct link to where they are.

Orchestrate was the name of the parallel execution technology acquired when Ascential bought Torrent Systems.
by ray.wurlod
Thu Jun 23, 2005 5:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom
Replies: 4
Views: 1236

Within the Transformer stage are you invoking any routines that perform I/O? This message often indicates incorrect usage of a file I/O statement, in particular the file variable.
by ray.wurlod
Thu Jun 23, 2005 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext ERROR
Replies: 4
Views: 2141

These errors are most likely to occur with Link Collector or IPC stage types. It's an error trying to get the next row. Maybe there was a timeout caused by an inappropriate collection algorithm.
Search the forum for SPINTRIES for more information about tuning the wait for mutex locks.
by ray.wurlod
Thu Jun 23, 2005 5:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where the Log files stored?
Replies: 3
Views: 1112

Note that they are not log files - they are tables in the DataStage Repository database.
The appropriate mechanism for purging old entries manually is the Director client. Choose Clear Log from the Job menu having selected the job in question.
by ray.wurlod
Thu Jun 23, 2005 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to check last link status or last stage status
Replies: 5
Views: 1307

Something like

Code: Select all

cat filename | cut -d',' -f1 
to extract the first parameter. The result is available when setting the value of a job parameter in a subsequent Job Activity.