Search found 53125 matches

by ray.wurlod
Fri Aug 22, 2008 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: glibc detected
Replies: 5
Views: 2602

YOU do the needful, which is to disable operator combination so that you can determine accurately the source of the error.
by ray.wurlod
Fri Aug 22, 2008 2:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to reject the records
Replies: 3
Views: 987

Constraint expressions.
InLink.AS_LOCATION <> "D" (regular output)
InLink.AS_LOCATION = "D" (reject link)
by ray.wurlod
Fri Aug 22, 2008 1:27 am
Forum: General
Topic: Vesion Control Documentation
Replies: 4
Views: 1544

If you have Version Control then you have its manual. It's all on the CD.
by ray.wurlod
Fri Aug 22, 2008 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from Excel File
Replies: 14
Views: 5871

The entry for uvodbc.config is essentially correct. <SEVER_NAME> (sic) is the Data Source Name. You said that you had defined a DSN, which is why I assumed that you had already installed a driver - you can not define a DSN without one. Yes, you need to have a UNIX-based ODBC driver for Microsoft Exc...
by ray.wurlod
Fri Aug 22, 2008 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "mmap failed: Not enough space"
Replies: 14
Views: 7879

You didn't mention a Sort in your original post! :roll:

Well done on resolving it yourself.
by ray.wurlod
Fri Aug 22, 2008 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from Excel File
Replies: 14
Views: 5871

Have you created an entry for your DSN in the uvodbc.config file in your project?
by ray.wurlod
Fri Aug 22, 2008 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reverse Lookup
Replies: 11
Views: 4479

PUT such a constraint on the output link.
by ray.wurlod
Fri Aug 22, 2008 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Consuming split files in a job
Replies: 12
Views: 2601

Folder stage is not an option when file size is too large. Don't have exact figures on that ready to hand - if, indeed, the limit is documented at all. It has to put the entire contents of the file into a single field.
by ray.wurlod
Fri Aug 22, 2008 12:37 am
Forum: General
Topic: loader report
Replies: 5
Views: 1433

It's stored in the DataStage Repository. We don't have complete information as to where, however it can be retrieved from the local DataStage Repository. There is a separate table there for each job's log. Why do you feel the need to replicate that?
by ray.wurlod
Thu Aug 21, 2008 10:20 pm
Forum:
Topic: Metastage Installation Process
Replies: 1
Views: 1204

Welcome aboard. MetaStage is a separate product and separately installed and licensed in version 7 and earlier. The vendor has a training class on the books, but given that MetaStage no longer exists in the current version (8.x) they are unlikely to present it without sufficient demand. I am unaware...
by ray.wurlod
Thu Aug 21, 2008 6:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 6375

What are the data types in the Oracle table? Is the date format correct for your Oracle instance? What is the SQL being executed (this is reported in the Oracle stage)? I use this oracle table CREATE TABLE TBablexx ( T_ID NUMBER(8,2), T_DATE DATE ) Three questions, one answer. Your problem is at be...
by ray.wurlod
Thu Aug 21, 2008 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling script error
Replies: 6
Views: 1591

Show us your code, especially that part that assigns the value to UnixCmd variable.
by ray.wurlod
Thu Aug 21, 2008 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VarChar in Hash Files
Replies: 12
Views: 2961

mikegohl wrote:I would recommend you open a case with Oracle. I'm sure you are not the first customer that has run into this limitation.

I take it you mean Oracle as the owners of PeopleSoft?
by ray.wurlod
Thu Aug 21, 2008 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading from sequential file
Replies: 8
Views: 2356

Parallel jobs don't handle this. You could solve it by pre-processing the file (for example using sed or awk command) to convert the double double-quote characters to something else, then converting these back to single double-quote character within the job.