Search found 53125 matches

by ray.wurlod
Fri Feb 18, 2005 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Red Brick ODBC user/password
Replies: 6
Views: 1323

Red Brick can also pick up the user ID and password from the RBUSER environment variable. Since you already have a working solution this knowledge comes a bit late, but may assist someone else.
by ray.wurlod
Fri Feb 18, 2005 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSP.Open GCI Error in Link
Replies: 15
Views: 7052

TipIf you do change LongVarChar to VarChar, also change the derivation of each such column to CAST(colname AS VARCHAR(2000)). This will avoid metadata mismatch warnings.
by ray.wurlod
Fri Feb 18, 2005 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: informix equalivalent for 'decode'statement in oracle
Replies: 5
Views: 1974

DECODE can have more than two options. Most databases' SQL has a CASE construct that you can use if there is no DECODE available. SELECT CASE WHEN '#CountryParameter#' = '' THEN SRC_CNTRY_CD WHEN '#CountryParameter#' IS NULL THEN SRC_CNTRY_CD ELSE '#CountryParameter#' END AS CNTRY_CODE FROM #SchemaN...
by ray.wurlod
Fri Feb 18, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in viewing hash data
Replies: 8
Views: 1847

Sending data to a hashed file does not, of itself, create the hashed file. Do you have the "Create" check box checked in the Hashed File stage? If so, there should be a message in the job log indicating that the hashed file was created. Can you see such an entry? A hashed file must have at least one...
by ray.wurlod
Fri Feb 18, 2005 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_BadAlloc
Replies: 2
Views: 2293

Especially check the ulimit for data and stack for the user id under which DataStage jobs run. Get your UNIX administrator to set both (and file size ulimit) to unlimited.
by ray.wurlod
Thu Feb 17, 2005 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file
Replies: 2
Views: 937

Welcome aboard! :D There are some databases, such as UniVerse and UniData, that allow you to have not just one value, but also more than one value in a column in a row. Typically this is a list of some kind, such as a person's qualitications or dependants' names. In the terminology of these database...
by ray.wurlod
Thu Feb 17, 2005 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading XML
Replies: 2
Views: 921

You should be able to use the XML Reader stage. Is your job compiling successfully? If not, what messages are emitted? Does your job run OK? If so, what's in the output? If not, what messages are logged? Do you have a custom style sheet and, if so, have you mentioned it in the custom properties of t...
by ray.wurlod
Thu Feb 17, 2005 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data model of Universe database
Replies: 3
Views: 1548

That said, it's an unconventional database in a number of ways. The main one that will thwart your desires is that there are different record structures withnin the same table. For example, the Sequential File stage record in DS_STAGETYPES has substantially more columns than the Red Brick stage. Fur...
by ray.wurlod
Thu Feb 17, 2005 7:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data model of Universe database
Replies: 3
Views: 1548

Still no. And the danger of publishing it is that "they" can change it at any time. And will, soon, if current gossip is correct.
by ray.wurlod
Thu Feb 17, 2005 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSP.Open GCI Error in Link
Replies: 15
Views: 7052

DRS is a plug-in stage. It is written according to the C Plug-In API specifications.

Can you try one without the MetaSQL tags?
If that's OK, can you move the MetaSQL tags to the Derivation column in the Columns grid, and switch to generated SQL? What happens in that case?
by ray.wurlod
Thu Feb 17, 2005 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use relational operator when hash file used as refere
Replies: 8
Views: 1807

In your original post you were specifying to use a DRS with a hashed file. Go back and read it. Using a DRS with a DataStage hashed file is not possible.
by ray.wurlod
Thu Feb 17, 2005 4:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why job got locked
Replies: 6
Views: 2002

Locks are there for a reason, so it is dangerous to release them by force without some understanding of the potential ramifications. A running job will take a lock to prevent the code that it is executing from being re-compiled while it is trying to execute it. The only time that it is safe to relea...
by ray.wurlod
Thu Feb 17, 2005 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Errors during jobs import
Replies: 4
Views: 1237

You attempt to delete and re-create the project may have left things in an inconsistent state. You must have Administrator rights to do this. This problem is addressed in a different thread. Assuming your project is intact, use the command DS.REINDEX ALL to re-build all the indices in the Repository...
by ray.wurlod
Thu Feb 17, 2005 4:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error during job administration
Replies: 1
Views: 728

The problem here is one of incompletely deleting all references to the project from the system tables. From the Administrator client command window or from a telnet session in which you have invoked dssh , and logged in with administrator access, execute the following command: VERIFY.SQL SCHEMA Proj...
by ray.wurlod
Thu Feb 17, 2005 4:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSP.Open GCI Error in Link
Replies: 15
Views: 7052

Can you tell us what other stage types you are using? In particular, what passive stage type are you using on the link that you assert is generating the error? DSP.Open is invoked when establishing a connection to data from a plug-in stage. Therefore this problem is unrelated to Transfomer stage or ...