Search found 6797 matches

by DSguru2B
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...
by DSguru2B
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

Its better to modularize you job. But if you insist, I dont see any problem in using the reject file in the same job. Onces all the records are written to the file, only then the read operation is going to start. Thats how it works in server. I am guessing the same rule applies in px as well :roll:
by DSguru2B
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.
by DSguru2B
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...
by DSguru2B
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

Exports are on my desktop. Need to ftp the files on to my unix server (DataStage server) for the diff.
by DSguru2B
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

Constraint and then pivot. This way you dont need an extra stage. Why didnt I think of that. Probably I was too tired.
by DSguru2B
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

You manager or who ever signed the PO will be having more information about it. Or maybe if you guys have a product admin at your site, he/she will be able to help you out.
by DSguru2B
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

That is certainly a very good practice. All these things make up for a good design with no room for tuneups :wink:
by DSguru2B
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

Opsi :oops: , I got them in the wrong order then :oops:
Sorry umamahes.
by DSguru2B
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

Sure you can do this in one job but tell me this, when you get a max, you will get one value. Your file might have x records. Do you want the max from database to be with all the records of your file?
by DSguru2B
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

JobType = 0 for server job
JobType = 1 for parallel job
JobType = 2 is Job Sequence
by DSguru2B
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.
by DSguru2B
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

Probably another transformer after the pivot stage to constraint the output maybe :roll:
by DSguru2B
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

Ray was talking about unix diff command. Craig was talking about ultaedit. Two different things.
by DSguru2B
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

Code: Select all

mv file1.txt file_`date +"%Y%m%d_%H%M%S"`.txt 

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.