Search found 53125 matches
- Fri Jan 12, 2007 4:10 pm
- Forum: General
- Topic: Director JobControl (@Coordinator): Summary of sequence run
- Replies: 3
- Views: 1974
- Fri Jan 12, 2007 4:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: What are the engines involve in Server and Parallel Jobs?
- Replies: 6
- Views: 2551
Server jobs execute in what is effectively a virtual machine called the DataStage Run Machine. This is what you install as the "DataStage server" and is also used to execute job sequences. The DataStage Run Machine is written in a combination of C and DataStage BASIC. Parallel jobs execute something...
- Fri Jan 12, 2007 4:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal Error: Cannot process ustrings if an NLS character map
- Replies: 6
- Views: 1437
- Fri Jan 12, 2007 4:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential file stage:
- Replies: 5
- Views: 1945
The problem is in the Sequential File stage; DataStage has scanned 100KB without finding the record delimiter you have specified on the format tab, and so has given up. If the source file is unterminated, then it must be fixed width, which is unlikely for XML. Therefore, I can only suggest that you ...
- Fri Jan 12, 2007 3:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Join output problem
- Replies: 7
- Views: 1857
There's no such thing as a left inner join. Are you using a left outer join, or an inner join? An inner join will return a number of rows no greater than the smaller of the row counts of the two inputs. A left outer join will return a number of rows no greater than the number of rows in the left inp...
- Fri Jan 12, 2007 3:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: duplicate record for key column in ODBC stage
- Replies: 12
- Views: 2624
Are you using Entire partitioning, by any chance? Even if you're not, the ODBC Enterprise stage emulates parallelism by creating as many connections to the data source as there are partitions for it to run in. This explains the duplicates; you are running the same query on each connection. Change th...
- Fri Jan 12, 2007 3:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Single records to multiple records.
- Replies: 8
- Views: 1839
What is "proper" sorting? It's not useful to tell us it is "not proper" - we can't help you to solve that without knowing what "proper" is! And you can use any sort utility you like (for example a UNIX sort command or a DataStage Sort stage or plug-in stage, like CoSort, to get the data sorted). Use...
- Fri Jan 12, 2007 3:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal Error: Cannot process ustrings if an NLS character map
- Replies: 6
- Views: 1437
- Fri Jan 12, 2007 3:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Floating Point Decimal
- Replies: 3
- Views: 1462
- Fri Jan 12, 2007 3:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Table locks when loading through Teradata Enterprise stage
- Replies: 19
- Views: 12560
- Fri Jan 12, 2007 3:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: loading unicode data to SQL 2k
- Replies: 3
- Views: 1211
- Fri Jan 12, 2007 3:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need help immediately
- Replies: 7
- Views: 1884
- Fri Jan 12, 2007 3:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding DSUtility
- Replies: 38
- Views: 5659
Another reason is time zones, and the need to sleep occasionally. Your specification is imprecise. Job parameters have as many as three values: the design-time defaults, created in Designer; the run-time defaults, set in Director, and the actual run-time values, set when a job run request is issued...
- Fri Jan 12, 2007 3:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Getting Aborted, but data is getting extracted and loade
- Replies: 11
- Views: 2649
- Fri Jan 12, 2007 3:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Variable Length input file EBCDIC with a Record length field
- Replies: 3
- Views: 1216
If there is a line terminator, then you can read using ReadSeq rather than ReadBlk, or even without the routine. If you do use a routine, it would be selected as the Before Job subroutine (or Before Stage subroutine in the Transformer stage being fed by the Sequential File stage). But you can read w...