Search found 6797 matches
- Thu Feb 01, 2007 8:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DATASTAGE
- Replies: 2
- Views: 1055
Welcome Aboard, Provide more information. The more you do, the more it will be easier for us to get to the bottom of this. We need to know your design, what you are trying to do, complete warning/fatal error messages copied from your log file. You can also use the site's search facility to pull up o...
- Thu Feb 01, 2007 8:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to use rejected data in same job ?
- Replies: 9
- Views: 2558
- Thu Feb 01, 2007 8:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Load unmatched data
- Replies: 11
- Views: 2341
Re: Load unmatched data
swades wrote:How can I do this with Merge Stage ?
You asked for it to be done in Merge stage, you got expert advice on so many stages that can get your work done.
- Thu Feb 01, 2007 8:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: pass value between jobs
- Replies: 19
- Views: 6725
However, server jobs are very limited in processing possibilities, so I prefer to develop most things in parallel jobs. A simple storage of a value to be retrieved later on is best to be done in a server job. Its a small job and hence preferably done in server. For massive processing use parallel j...
- Thu Feb 01, 2007 7:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Version Control: How do you do at your place
- Replies: 18
- Views: 4068
- Thu Feb 01, 2007 7:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pivot & Filter - Alternative option
- Replies: 12
- Views: 2530
- Thu Feb 01, 2007 7:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem adding jobs to schedule
- Replies: 15
- Views: 14366
- Thu Feb 01, 2007 7:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Good Debugging Practices:Guidance needed
- Replies: 10
- Views: 2287
- Thu Feb 01, 2007 7:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding JOBTYPE AND JOBTYPEIND columns in DS_JOBS table
- Replies: 3
- Views: 1463
- Wed Jan 31, 2007 10:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to implement this in DataStage
- Replies: 5
- Views: 1281
- Wed Jan 31, 2007 8:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding JOBTYPE AND JOBTYPEIND columns in DS_JOBS table
- Replies: 3
- Views: 1463
- Wed Jan 31, 2007 7:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Load unmatched data
- Replies: 11
- Views: 2341
Refer to Ray's first reply in this post.
- Wed Jan 31, 2007 6:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pivot & Filter - Alternative option
- Replies: 12
- Views: 2530
- Wed Jan 31, 2007 6:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Version Control: How do you do at your place
- Replies: 18
- Views: 4068
- Wed Jan 31, 2007 6:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential files Backup with a timestamp
- Replies: 3
- Views: 1252
Something like
in after job subroutine as Ray suggested.
If you want date in a different format, check for more formatting options in google or your favourite search engine.
Code: Select all
mv file1.txt file_`date +"%Y%m%d_%H%M%S"`.txt
If you want date in a different format, check for more formatting options in google or your favourite search engine.