Search found 548 matches

by Krazykoolrohit
Mon Jul 17, 2006 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we run a DS Job not sequence from Mainframes
Replies: 10
Views: 2588

I think all utilities which runs on mainframes work the same way. even when datastage runs in unix. it translates the code into a language (orchestrate) unix understands.

which other way you expecting datastage to run:-P lol
by Krazykoolrohit
Mon Jul 17, 2006 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we run a DS Job not sequence from Mainframes
Replies: 10
Views: 2588

If you red the "installation and upgrade guide" provided with your datastage installation, you can get some pointers.

It says that there exists a "enterpirise MVS edition" of datastage which will allow you to develop jobs in mainframes.


Please read it for further information
by Krazykoolrohit
Mon Jul 17, 2006 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fixed width columns on the target file.
Replies: 7
Views: 3836

no it will not make it a fixed width file but it will fix the length of your columns.

you can get rid of the quote character by typing 000 instead of quote
by Krazykoolrohit
Mon Jul 17, 2006 1:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Novice question
Replies: 15
Views: 4281

are you sure no nulls are being passed to a field which is not null? this happens when datstage drops the records but sometimes you still see all the rows traversing to next stage.
by Krazykoolrohit
Mon Jul 17, 2006 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fixed width columns on the target file.
Replies: 7
Views: 3836

keep the delimiter as comma and use char instead of varchars.
by Krazykoolrohit
Mon Jul 17, 2006 11:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we run a DS Job not sequence from Mainframes
Replies: 10
Views: 2588

you can fire it from mainframe using CA7 or any other mainframe scheduling tool.
by Krazykoolrohit
Mon Jul 17, 2006 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rollup Data
Replies: 11
Views: 2961

why dont you do all your joins at the database side and populate a final view. use datastage to extract data from there. would be much faster
by Krazykoolrohit
Sun Jul 16, 2006 11:37 am
Forum: General
Topic: Sequential file to XML Output
Replies: 9
Views: 8685

perfectly agree with ray. this site can bail you out of trouble but cannot teach you how to walk.

learn how to walk and we will help you learn how to run:-)
by Krazykoolrohit
Fri Jul 14, 2006 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence question
Replies: 12
Views: 4901

is there nothing in pallete that can help me?

something which transfers the loop to the job next in sequence?
by Krazykoolrohit
Fri Jul 14, 2006 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: surrogate key file SDKSequences file corrupt
Replies: 11
Views: 4572

just curios.

is anyone else using the same file...maybe for testing or just by mistake?
by Krazykoolrohit
Fri Jul 14, 2006 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rollup Data
Replies: 11
Views: 2961

I can suggest you two solutions: 1. write a SQL query in the ODBC stage aggregating your columns and sending the output to the new columns. something like: select Region,Dept,Dep_Sal_Total,Region_Sal_Total from <table> where Dep_Sal_Total in (select dept,Sum(Sal) from <table> group by dept) and Regi...
by Krazykoolrohit
Fri Jul 14, 2006 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence question
Replies: 12
Views: 4901

I have around 20 jobs in one sequence. It looks rather clumsy connecting all of them to one.

this is the way its currently designed. I was looking into the possibility of another design to improove the legibility of the sequence
by Krazykoolrohit
Fri Jul 14, 2006 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handle exceptions and continue
Replies: 3
Views: 889

handle exceptions and continue

Hi,

I want to write a sequencer which ivokes a exception handler when a job fails and continues to run the next job.

setting trigger to uncoditional in job1 is of no help as once the control moves to exceptional handler it doesnot goto job 2
by Krazykoolrohit
Fri Jul 14, 2006 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence question
Replies: 12
Views: 4901

i changed the job design to job1 - Job 2 Exception handler - notify (sequence) - Notify (job fail) and its working The issue now is when i say that job2 should run after job1 unconditionally and job1 fails, i want the control to pass to job2. ofcourse i need the exceptional handler to work too for j...