Search found 53125 matches
- Wed May 17, 2006 2:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding Routine
- Replies: 4
- Views: 1761
- Wed May 17, 2006 2:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic jobs
- Replies: 1
- Views: 629
- Wed May 17, 2006 1:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date to Integer in parallel edition
- Replies: 6
- Views: 1451
- Wed May 17, 2006 1:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage export of the scheduler.
- Replies: 1
- Views: 1036
The "schedule" on a UNIX platform is your crontab file. There is no mechanism to include this in an export. At best you can script to display the contents of your crontab file into a text file and keep that with your export. How you would rebuild that schedule would be up to your own ingenuity (scri...
- Wed May 17, 2006 1:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: After routine to read metadata from sqlldr generated log
- Replies: 6
- Views: 1224
- Wed May 17, 2006 1:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Backup and Exporting AT commands
- Replies: 6
- Views: 1274
- Wed May 17, 2006 1:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing The UV DataBase/ hash File
- Replies: 12
- Views: 2897
You use the UV stage or the Hashed File stage. In a routine (still don't understand why you need a routine - data obfuscation can be done perfectly well with regular jobs) you open the hashed file with Open, you write records to it with Write, and you close it with Close. The Write statement must be...
- Wed May 17, 2006 1:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Got certified in Datastage
- Replies: 40
- Views: 13776
Welcome aboard, raji. :D Do you mean the logistical details, such as where to find an examination center? This information is available on the IBM web site indirectly, then you have to find the local office of one of the testing companies. Search this forum to find out about the assessment and feedb...
- Wed May 17, 2006 1:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: 'Wait For File Activity’ stage limitation
- Replies: 1
- Views: 2673
- Wed May 17, 2006 1:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date to Integer in parallel edition
- Replies: 6
- Views: 1451
- Wed May 17, 2006 1:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to capture JobName,warnings etc...
- Replies: 4
- Views: 1488
- Tue May 16, 2006 6:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic Language
- Replies: 1
- Views: 847
- Tue May 16, 2006 6:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing The UV DataBase/ hash File
- Replies: 12
- Views: 2897
- Tue May 16, 2006 3:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing The UV DataBase/ hash File
- Replies: 12
- Views: 2897
Use a UV stage. Edit the DDL so that it's key column is created with a DEFAULT clause. This will generate the sequence for you.
Code: Select all
CREATE TABLE BLAH (
KEYCOL INTEGER NOT NULL PRIMARY KEY DEFAULT NEXT AVAILABLE,
...
);- Tue May 16, 2006 3:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: table join and normalization
- Replies: 5
- Views: 1300
Try putting into the Table Names box and not checking the Normalized check box.
Code: Select all
UNNEST T1 ON Detail, T2