Search found 53125 matches
- Sun Jul 27, 2008 7:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help on cartesian product in DataStage server job
- Replies: 17
- Views: 12581
DataStage can request anything the database server will permit. On some databases you need to change the environment to allow Cartesian products (for example SET CROSS JOIN ON in Red Brick). 23 million x 31 million will always take a lot of time. At one row per second, indeed, it would take over a m...
- Sun Jul 27, 2008 7:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TCL WHO command points to different Project
- Replies: 8
- Views: 3140
- Fri Jul 25, 2008 7:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: version 6.0 and 7.5 in a single serever
- Replies: 2
- Views: 1967
Welcome aboard. The answer is yes, but at least one of the installations must be an "-itag" installation, that uses non-default shared memory keys, etc., so that the two servers' working sets are not in conflict. Full details of -itag installations are in the installation and upgrade guide. However,...
- Fri Jul 25, 2008 7:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Constraint in Transformer
- Replies: 4
- Views: 1565
- Fri Jul 25, 2008 7:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Protect Environment
- Replies: 1
- Views: 881
- Fri Jul 25, 2008 7:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: smp and MPP
- Replies: 2
- Views: 1418
You can Search for the answer to this question. I know that I have answered that precise question in the past.
- Fri Jul 25, 2008 7:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Writing Nulls to Sequential File
- Replies: 7
- Views: 3446
- Fri Jul 25, 2008 7:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Changing environment variable for the whole project
- Replies: 2
- Views: 884
- Fri Jul 25, 2008 7:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Teradata Installation
- Replies: 13
- Views: 3117
- Fri Jul 25, 2008 7:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generating Alphanumeric sequence using Row Generator
- Replies: 5
- Views: 2345
- Fri Jul 25, 2008 7:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Will compiling a sequencer compiles all the underlying jobs?
- Replies: 4
- Views: 1086
Re: Will compiling a sequencer compiles all the underlying j
Will compiling a sequencer compiles all the underlying jobs? Thanks No, because you can not compile a sequencer alone. A sequencer is one of the components you can use in a job sequence. Please be careful with terminology. (Yes, I know that the official IBM training materials aren't always 100% acc...
- Fri Jul 25, 2008 7:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to find Menu bar in Datastage designer
- Replies: 3
- Views: 1853
- Fri Jul 25, 2008 7:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Escape character in v8
- Replies: 6
- Views: 2376
- Fri Jul 25, 2008 7:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bad record delimiter Fixed width length "\n" got &
- Replies: 9
- Views: 8955
- Fri Jul 25, 2008 7:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: pipe delimited output from dssh
- Replies: 1
- Views: 1262
DataStage/SQL does not generated delimited output at all - it generates fixed width output. To get pipe-delimited, the only way is to generate the pipe characters yourself. SELECT col1, '|', col2, '|', col3 FROM hashedfile; Even then the data columns will be fixed width as specified in the file dict...