Search found 15603 matches
- Tue Aug 07, 2007 12:44 am
- Forum: IBM<sup>®</sup> DataStage TX
- Topic: unix shell script to schedule a data stage job
- Replies: 3
- Views: 3467
- Mon Aug 06, 2007 10:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: less rows from lookup
- Replies: 19
- Views: 3915
- Mon Aug 06, 2007 10:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there a way Cobol program on MF to Kick off Datastage Job
- Replies: 6
- Views: 1817
- Mon Aug 06, 2007 4:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Converting months in to date
- Replies: 12
- Views: 3094
- Mon Aug 06, 2007 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting the Director list of executed jobs
- Replies: 10
- Views: 2184
- Mon Aug 06, 2007 3:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: gunzip usage
- Replies: 13
- Views: 4017
- Mon Aug 06, 2007 2:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Conditional job processing based on a reject file
- Replies: 1
- Views: 615
- Mon Aug 06, 2007 2:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Convert Binary datatype to character
- Replies: 2
- Views: 915
- Sun Aug 05, 2007 2:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: gunzip usage
- Replies: 13
- Views: 4017
Combine Craig's find options and replace his -print option with what I posted earlier "-exec gunzip {} \;" and you will have something that works for you. But you really should read up on UNIX, particularly how pipes, redirection and command lines work since this is fundamental to working in that en...
- Sun Aug 05, 2007 2:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: shell script execution on datastage server
- Replies: 4
- Views: 2349
- Sat Aug 04, 2007 12:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: gunzip usage
- Replies: 13
- Views: 4017
- Fri Aug 03, 2007 10:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Diferences between 7.1 and 7.5
- Replies: 3
- Views: 1005
- Fri Aug 03, 2007 10:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: gunzip usage
- Replies: 13
- Views: 4017
gunzip is trying to interpret stdin (your list of files) as a compressed stream so it cannot unzip it. I am not at a UNIX box right now, but would recommend you use the find command, but I don't know the options from memory for selecting the appropriate single file, but the command would read someth...
- Fri Aug 03, 2007 4:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: The job is extremely slow after join
- Replies: 5
- Views: 1276
- Thu Aug 02, 2007 8:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: The job is extremely slow after join
- Replies: 5
- Views: 1276
Put a HandleNull() call in the derivations where you TRIM data that might be null and where you don't want it to be. Or a simple
Code: Select all
IF IsNull(In.Col) THEN SetNull() ELSE TRIM(In.Col)