Search found 53125 matches

by ray.wurlod
Tue May 30, 2006 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 6.0.1, 7.5.1.A on UNIX System (HP)
Replies: 5
Views: 1180

You enable it the same way that you debug the dsrpcd - by directing its outputs (stdout and stderr) to somewhere other than /dev/null. You can control the amount of warning via the debug-level switch (most verbose is -d9). There is a noticeable impact in DataStage clients' response times, and startu...
by ray.wurlod
Tue May 30, 2006 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding SortStage
Replies: 7
Views: 1644

No. The Sort stage does not read from disk. It requires an input link.
You can, however, specify the UNIX sort command as a filter in a Sequential File stage.
by ray.wurlod
Tue May 30, 2006 12:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mainframe Date Fields
Replies: 5
Views: 1041

It could be one of those horrible bit-wise storage formats, where a particular five bits contains the day number (1-31), another four bits contains the month number (1-12), and so on for year, hour, minute, second and, perhaps, millisecond. You really do need to get the doco, because there's no guar...
by ray.wurlod
Tue May 30, 2006 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with flat Files related to date field
Replies: 8
Views: 1690

I think by now you are convinced that it's an Oracle problem, not a problem with accessing flat files.
by ray.wurlod
Tue May 30, 2006 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special characters and ORAOCI9 stage
Replies: 5
Views: 4182

Hi Craig, Thanks for the tip, we have now solved our problem: in the dsenv template the NLS_LANG parameter was not defined, nor did the DS manual mention it. A bunch of other parameters were mentioned, and I had set them all to our NLS settings. But adding the NLS_LANG parameter to the dsenv file d...
by ray.wurlod
Tue May 30, 2006 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Client Connection Error.
Replies: 5
Views: 2622

It is not a configuration file - rather there is an NLS database. You configure it from the Administrator client - NLS settings system wide for character maps to be built and loaded into shared memory, and NLS per-project settings.
by ray.wurlod
Mon May 29, 2006 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in the reading of a line of an archive
Replies: 0
Views: 911

Do you have NLS (national language support) enabled? Without NLS the accented characters should be able to be handled satisfactorily. I assume that the database is storing this column as NVarChar of some kind. Do you have your Oracle language environment variables (such as NLS_LANG) correctly set?
by ray.wurlod
Mon May 29, 2006 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file
Replies: 2
Views: 955

For only 10 rows to be processed you may as well perform lookups directly against the target table, unless you are constructing a design that is staging data (which is not apparent from your design). Or, since you know these 10 rows, just preload their key values into the hashed file. For so few row...
by ray.wurlod
Mon May 29, 2006 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding SortStage
Replies: 7
Views: 1644

Your text specifies "reading data from sortstage to sequential stage" but your design shows something different.
Does the text file contain an empty line at the end? (I vaguely recall that -100 is the "end of data" code.)
by ray.wurlod
Mon May 29, 2006 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while executing job in Protected Project
Replies: 9
Views: 5532

Is the Oracle client propertly set up and configured on the machine whose fastname is mentioned in the configuration file for node1? In particular is there a tnsnames.ora file there that refers to the correct Oracle instance(s)?
by ray.wurlod
Mon May 29, 2006 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 6.0.1, 7.5.1.A on UNIX System (HP)
Replies: 5
Views: 1180

Once disconnected no record remains of a connected client. You can script your own, or you can enable logging in the dsrpcd process.
by ray.wurlod
Mon May 29, 2006 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where is the PATH variable value will be set in DataStage
Replies: 10
Views: 4288

As with all variable settings, the most recent has effect. For DataStage processes the setting made in dsenv should be the most recent, unless overridden within the job design itself. The second message of a job run in the log contains all environment variable settings - did you check there to see w...
by ray.wurlod
Mon May 29, 2006 2:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination of Stage
Replies: 1
Views: 1115

The error message DOES give you more information. "Abnormal termination of stage <Job Name>..< Transformer Name> detected". (emphasis mine) Look for a problem with the Transformer stage, rather than jumping to the conclusion that the Aggregator stage is at fault. In another thread on exactly this pr...
by ray.wurlod
Mon May 29, 2006 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Type Varchar 1500
Replies: 10
Views: 4314

What makes you sure that this is the culprit? Could it be some other Char, Varcher or Numeric column that lacks any precision setting, or has an invalid precision setting, that might be the cause? Certainly the cobination VarChar and 1500 is perfectly valid.
by ray.wurlod
Mon May 29, 2006 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage Access Error
Replies: 3
Views: 1379

You did not check well enough. You (that is, the user ID under which DataStage connects to Oracle) lacks appropriate permission to sys.dba_extents. You need to be able to SELECT from this system table. Arrange with your Oracle DBA to get such privilege granted.