Search found 53125 matches

by ray.wurlod
Wed Feb 06, 2008 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Update Universe Table
Replies: 3
Views: 1308

This is not a UniVerse problem per se - it would occur no matter which database you were using. You have not complied with SQL grammar, which specifies that an UPDATE statement must have a WHERE clause. In database stages in DataStage the WHERE clause is generated by marking one or more columns as K...
by ray.wurlod
Wed Feb 06, 2008 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Update Universe Table
Replies: 3
Views: 1308

Re: Unable to Update Universe Table

Please help me out .Its urgent. We don't do "urgent" here. DSXchange is an all-volunteer site whose participants post as and when they can. If you need urgent help sign up for premium service with your support provider, and learn the true cost of urgent. Please help me out. We'd love to help you ou...
by ray.wurlod
Wed Feb 06, 2008 2:48 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Version controlling
Replies: 2
Views: 1878

Version Control does not support Information Analyzer/ProfileStage.
by ray.wurlod
Wed Feb 06, 2008 2:47 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Information Analyzer questions
Replies: 2
Views: 2510

If on Windows there is on .odbc.ini file; instead the ODBCINI key in the Registry is used (edited with ODBC Administrator). The uvodbc.config file is only for DataStage. Reports are stored in the IADB (Information Analyzer database, formerly PSDB (ProfileStage) or MRDB (MetaRecon)). This requires a ...
by ray.wurlod
Wed Feb 06, 2008 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing rejected records
Replies: 13
Views: 4409

Welcome aboard. Just as in SQL there is no such thing as a rejected record when a join is performed. A row is output from the join if the join criteria are satisfied. Nothing else happens.
This is why the Join stage does not have support for a Reject output link.
by ray.wurlod
Wed Feb 06, 2008 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can we add parameters in transformer stage
Replies: 17
Views: 2703

Why do you need database connection details in a Transformer stage?! This stage type does not connect to databases.
by ray.wurlod
Wed Feb 06, 2008 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view the table contents
Replies: 10
Views: 2044

The same way you'd check any environment variable.

Code: Select all

echo $NLS_LANG
executed from any DataStage job.
by ray.wurlod
Wed Feb 06, 2008 4:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning about converting Nullable source to Non Nullable
Replies: 3
Views: 1438

There's no such thing as non-nullable in the return from a lookup. If the lookup fails and the rule is Continue, then any column from the reference input will be set to null. It follows that any field on the output link that receives one of these columns must also be nullable. Deal with it downstrea...
by ray.wurlod
Wed Feb 06, 2008 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer : restart/resume job without losing data
Replies: 1
Views: 588

The usual technique is to preserve them somewhere - perhaps in another queue - until the rows are committed. Search the forum for examples.
by ray.wurlod
Wed Feb 06, 2008 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Stage Error when running DB2 query.
Replies: 7
Views: 3264

Why are you using an ODBC Enterprise stage? There is an issue with the DB2/UDB Enterprise stage when DB2 is on a different platform; this may apply to the ODBC Enterprise stage as well. Try using a DB2 API stage.
by ray.wurlod
Wed Feb 06, 2008 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDKSequences access issue
Replies: 3
Views: 1087

You need to create a VOC pointer for SDKSequences hashed file. You may also need to create a file dictionary for SDKSequences. Do this first:

Code: Select all

SETFILE SDKSequences SDKSequences
and let us know the outcome.
by ray.wurlod
Wed Feb 06, 2008 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting the null
Replies: 5
Views: 2109

One function is for Modify stage, the other is for Transformer stage. The chapter in Parallel Job Developer's Guide on Modify stage is incorrect in stating that NullToValue() can be used in Modify stage. Try using double quotes around the default value ("1800-01-01"). What is the default date format...
by ray.wurlod
Wed Feb 06, 2008 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start ORCHESTRATE Process
Replies: 8
Views: 14522

It's simple supply-and-demand economics. If you have sufficient free resources then the demand for those resources can be satisfied. If you don't they can not.
by ray.wurlod
Wed Feb 06, 2008 12:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help on REINDEX
Replies: 2
Views: 938

DS.REINDEX rebuilds indexes only on Repository tables that contain design-time metadata. Unless you are having problems with the Repository there is no need to use this command, as Ken noted. Also, as Ken noted, this command does not repair corrupted hashed files. If you have created indexes on a ha...
by ray.wurlod
Wed Feb 06, 2008 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view the table contents
Replies: 10
Views: 2044

How is the NLS_LANG environment variable set?