Search found 6797 matches
- Thu Oct 19, 2006 10:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link Collector job continues to run
- Replies: 14
- Views: 4019
- Thu Oct 19, 2006 8:41 am
- Forum: General
- Topic: Ship Date, *Stage 8.0
- Replies: 7
- Views: 4504
- Thu Oct 19, 2006 8:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check the record count before dropping the file
- Replies: 4
- Views: 1115
- Thu Oct 19, 2006 7:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check the record count before dropping the file
- Replies: 4
- Views: 1115
What do you mean by "datastage drops the file". Do you mean creates it? If thats the case, then the file will be created regardless of the record count. If you mean something else then please clarify. You can check for number of lines in a file by wc -l command. If it returns 0 that means the file i...
- Thu Oct 19, 2006 7:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: email problem
- Replies: 5
- Views: 1243
- Thu Oct 19, 2006 7:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing before routine output in the datastage job parameter
- Replies: 11
- Views: 8777
- Thu Oct 19, 2006 7:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Identifying last user who change the job
- Replies: 4
- Views: 1286
- Tue Oct 17, 2006 8:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Want to delete the records giving specific date range
- Replies: 12
- Views: 3728
- Tue Oct 17, 2006 6:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to eliminate duplicate records from source
- Replies: 6
- Views: 1588
- Tue Oct 17, 2006 6:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Zip Seq file
- Replies: 11
- Views: 3959
As i said, the coding depends upon the type of zip it is
if its .tar then
if its .Z then
it its .gz then
These command(s) will go in the after job subroutine "ExecSh"
if its .tar then
Code: Select all
untar file.tar
if its .Z then
Code: Select all
uncompress file.Z
it its .gz then
Code: Select all
gzip -d file.gz
These command(s) will go in the after job subroutine "ExecSh"
- Tue Oct 17, 2006 6:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Testing For A Valid Date
- Replies: 8
- Views: 1946
True. But they can certainly be called by DSX.
Refer thispost
Refer thispost
- Tue Oct 17, 2006 6:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: cp command in after job sub-routine
- Replies: 16
- Views: 4834
Ok now i am confused. Is the routine not being called after the DS job finishes or it is being called and just not functioning as you want it to. If the former then check in the log file. What does it say about the after-job subroutine. If latter, then, i have a question. Did you try correcting the ...
- Tue Oct 17, 2006 6:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Zip Seq file
- Replies: 11
- Views: 3959
- Tue Oct 17, 2006 6:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: cp command in after job sub-routine
- Replies: 16
- Views: 4834
You have the commands messed up. This is the proper syntax (use of quotes)
Code: Select all
Command1 = "cp ":filename1:" ":filename1A
Command2 = "cp ":filename2:" ":filename2A
- Tue Oct 17, 2006 5:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: cp command in after job sub-routine
- Replies: 16
- Views: 4834