Search found 3329 matches

by Sainath.Srinivasan
Wed Jul 08, 2009 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to identify the Sequence that triggered the job
Replies: 1
Views: 516

Look for dsjob -jobinfo

Will leave the rest for you.
by Sainath.Srinivasan
Wed Jul 08, 2009 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Automatic restart of a scheduled job
Replies: 2
Views: 706

Musn't you be checking why it failed in the first place before executing it again? What if the job was successful last time? You can include this in a sequencer which loops in 10 min intervals (with sleep). You need to get jobinfo and branch on that. Give it a start and let us know if you have any q...
by Sainath.Srinivasan
Tue Jul 07, 2009 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing Packed decimal value.
Replies: 9
Views: 3778

Adding to what ArndW sayd, S9(16)V99 cannot have a value as '1.23'. It will have '123' as V is logical decimal or '12r' (or somethingvery similar) for S.

If the data is in mainframe, are you using DS/390 or something similar? Because server edition cannot connect to mainframe.
by Sainath.Srinivasan
Tue Jul 07, 2009 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call routine function from another routine???
Replies: 6
Views: 1701

Doh!! Me and my typing.

Thanks for pointing Craig :oops:
by Sainath.Srinivasan
Tue Jul 07, 2009 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Rejects from Oracle enterprise stage
Replies: 6
Views: 2545

Did you try with some test job?

Reject link will return any rows not loaded into the target - with few exceptions when the datastage with result in core dump
by Sainath.Srinivasan
Tue Jul 07, 2009 2:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call routine function from another routine???
Replies: 6
Views: 1701

You need to define it.

What have you tried?

Search for define or DSU
by Sainath.Srinivasan
Tue Jul 07, 2009 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage problem
Replies: 10
Views: 4163

Or use a reject link from ODBC stage to capture anything not successful.
by Sainath.Srinivasan
Mon Jul 06, 2009 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage problem
Replies: 10
Views: 4163

Your where clause does not have an '=' symbol in the last line (after col1).
by Sainath.Srinivasan
Mon Jul 06, 2009 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage problem
Replies: 10
Views: 4163

What is the custom SQL statement?

What is the warning / error?

Do not expect others to guess the issues you are facing. It is enough to guess the solution.
by Sainath.Srinivasan
Mon Jul 06, 2009 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort the output file
Replies: 10
Views: 2347

Ray,

The first stage is an ftp stage (or sequential file). So a transformer connected to this may cause partitioning of data.

I think this is what the op is saying.
by Sainath.Srinivasan
Mon Jul 06, 2009 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge 4 flat files
Replies: 8
Views: 1796

But I can't as I do not have funnel in server jobs :-(

But can do link collector or simple "cat file1 file2...."

Btw, what do you mean by 'merge' ?
by Sainath.Srinivasan
Mon Jul 06, 2009 3:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update the target table with max date
Replies: 5
Views: 2624

Did you trying using aggregator and doing max(date) in it?
by Sainath.Srinivasan
Sat Jul 04, 2009 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Specify File Pattern for Sequential files
Replies: 9
Views: 4579

Maybe you can explain what you do mean by
But i am not able to read all the three files .
by Sainath.Srinivasan
Sat Jul 04, 2009 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the solution to get sequence numbers in DS server jo
Replies: 2
Views: 1611

You may need an hash file to store the list of values and reference it back.

Alternatively you can do in 2 jobs - one to lookup and write missing records, second to use it together with your original reference file to load the target.