Search found 53125 matches

by ray.wurlod
Sun Feb 15, 2009 2:40 pm
Forum: General
Topic: failed to get metadata from RDB oracle ODBC driver
Replies: 1
Views: 1397

The driver you have installed does not support the SQLColumns() function. You need a more capable driver if you wish to import metadata.
by ray.wurlod
Sun Feb 15, 2009 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in orchadmin and running jobs
Replies: 4
Views: 2856

Since the conductor process was unable to contact one or more section leaders, I would hazard the guess that your rsh permissions have not been set up properly for trusted connections between these processes.

Carefully read the paragraph of suggested things to examine in the output that you posted.
by ray.wurlod
Sun Feb 15, 2009 1:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Where condition from other table/file
Replies: 7
Views: 2443

Not in a parameter or in a file, but perhaps in a hashed file or UniVerse table in the project account. Then, to do the lookup, access that hashed file using a UniVerse stage, which uses SQL. Just don't expect it to be fast. It won't be. Indexing the search column will help.
by ray.wurlod
Sat Feb 14, 2009 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join/Lookup Stage output
Replies: 9
Views: 4772

You DO have a hex editor - it's the od -x command in UNIX.
by ray.wurlod
Sat Feb 14, 2009 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to import the table metadata from Oracle Database
Replies: 6
Views: 3915

Did you bother to search the forums for this exact error message? I'm sure it's been posted many times before.
by ray.wurlod
Sat Feb 14, 2009 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashing Issue
Replies: 6
Views: 1551

Join stage (and certain others) mandatorily require that inputs be identically sorted and partitioned, in the case of the Join stage on the specified join keys. Usually this implies the Hash partitioning algorithm but, for a single integer key, the modulus partitioning algorithm may prove more effic...
by ray.wurlod
Sat Feb 14, 2009 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencial file not able to read binary(COMP) data correctly
Replies: 3
Views: 1603

A Sequential File stage performs an import operation - attempting to translate from human-readable format to internal (binary) format. Try reading the file with a Complex Flat File stage.
by ray.wurlod
Sat Feb 14, 2009 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Columns
Replies: 6
Views: 1984

No, only once for each Rule Set, or each time you modify a Rule Set. However, you do need to do it onto each DataStage/QualityStage server machine; this is the step you missed.
by ray.wurlod
Fri Feb 13, 2009 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Columns
Replies: 6
Views: 1984

Provisioning is the act of transferring the Rule Set from the QualityStage client onto the server. Right click on the Rule Set and choose "Provision All" from the menu.
by ray.wurlod
Fri Feb 13, 2009 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max and Min value as input to DB2 stage
Replies: 9
Views: 1824

Actually it could be done using an External Source stage, but I wondered what you had in mind. But there's no advantage in a parallel job in using a hashed file - a sequential file would do as well - because the entire reference data set is imported into memory.
by ray.wurlod
Fri Feb 13, 2009 4:09 pm
Forum: General
Topic: Parameter set params fail
Replies: 2
Views: 993

I have successfully used environment variable parameter set parameters. That is, I have been there but not seen the problem that you are reporting. However, I am using these parameters in a job in a location that is not a connection to a database (and obviously is not in a Connector). That may be a ...
by ray.wurlod
Fri Feb 13, 2009 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max and Min value as input to DB2 stage
Replies: 9
Views: 1824

In a parallel job? Please elaborate.
by ray.wurlod
Fri Feb 13, 2009 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Columns
Replies: 6
Views: 1984

What's different in production? In production have you provisioned the rule set used by the Standardize stage?
by ray.wurlod
Fri Feb 13, 2009 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join/Lookup Stage output
Replies: 9
Views: 4772

Use a hex editor to find out what the "square box" actually is.

Space should be 32, NULL will probably be 128 (the internal value used to represent an out of band null in DataStage on UNIX).
by ray.wurlod
Fri Feb 13, 2009 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping the records of DS_AUDIT
Replies: 15
Views: 5584

Recall that DTM is VARCHAR. Therefore you can use substring. Within SQL the syntax is SUBSTRING (DTM FROM 1 FOR 10) I would probably add an I-descriptor to the dictionary of DS_AUDIT and use that in the query. 0001: I 0002: SUBSTRINGS(DTM,1,10) 0003: 0004: Date Modified 0005: 10R 0006: M 0007: MODS