Search found 53125 matches
- Tue Mar 20, 2007 6:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ETL Tool to access ODBMS
- Replies: 1
- Views: 873
What "transformation" do you propose to perform upon the objects? How, precisely, do you plan to store objects in Oracle? What "dump" capabilities does Versant have? Is there an ODBC driver available? (Given that there's nothing in the ODBC API specification relating to object databases, I tend to d...
- Tue Mar 20, 2007 6:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: APT_InfxreadOperator: Could not connect to server:
- Replies: 0
- Views: 1309
Yes. Your Informix client software requires that the sqlhosts file be accessible and contain appropriate definitions of hostname(s) supporting Informix server(s). That it's not accessible may mean simply that you have not set the INFORMIXDIR environment variable (either in dsenv script or elsewhere)...
- Tue Mar 20, 2007 5:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Folder stage to read multiple files then remove file headers
- Replies: 10
- Views: 3094
- Tue Mar 20, 2007 5:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OCONV Decimal conversion
- Replies: 9
- Views: 3673
- Tue Mar 20, 2007 5:46 pm
- Forum: General
- Topic: Merging Records
- Replies: 30
- Views: 8622
Here's what I meant by add a line number. File A File B --------- ------------------ # UPC ORG # STORE DATE 1 01 ALB 1 001 01/24/2007 2 02 ALB 2 002 01/25/2007 3 03 ALB 3 003 01/26/2007 4 04 ALB 4 004 01/27/2007 5 05 ALB 5 005 01/28/2007 Now you've got something on which to base the join, so that th...
- Tue Mar 20, 2007 6:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generating Multiple Rows from single row
- Replies: 6
- Views: 2159
- Tue Mar 20, 2007 6:49 am
- Forum: General
- Topic: Merging Records
- Replies: 30
- Views: 8622
- Tue Mar 20, 2007 6:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Scheduling
- Replies: 5
- Views: 1759
- Tue Mar 20, 2007 6:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Connecting to MS Access DB from DataStage
- Replies: 7
- Views: 3226
- Tue Mar 20, 2007 6:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to change server jobs to parallel?
- Replies: 8
- Views: 2629
- Tue Mar 20, 2007 6:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warnings in Datastage
- Replies: 3
- Views: 4867
It's an alert rather than a warning. On the input to the stage YR is defined as int64; on the output from the stage YR is defined as int32 (or decimal[10,0] in the other case). You are being alerted to the fact that not every int64 value can be represented as int32. To eliminate the warning, render ...
- Tue Mar 20, 2007 6:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting job names from a sequencer.
- Replies: 5
- Views: 1143
- Tue Mar 20, 2007 6:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job failed validation
- Replies: 3
- Views: 1104
- Tue Mar 20, 2007 6:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Segmentation fault (core dumped)
- Replies: 4
- Views: 3386
There are no hashed files in parallel jobs. A segmentation fault is an attempt to access an address in memory that either does not exist or is one that you do not own. It can, for example, be caused by trying to shoehorn 15 characters into a Char(12) column, or sometimes by trying to allocate null t...
- Tue Mar 20, 2007 6:31 am
- Forum: General
- Topic: Merging Records
- Replies: 30
- Views: 8622
Cartesian join (your second post) is a different requirement from union all (your first post - "append the two files in a single file"). If file1 has N lines and file2 has M lines, the approach I suggested will yield (N + M) lines. A Cartesian join will yield (N * M) lines. Which do you want? You ca...