Search found 3329 matches

by Sainath.Srinivasan
Wed Jun 29, 2005 3:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: load order
Replies: 6
Views: 1479

As the final stage will be a passive stage (loader), you cannot order your input link there. So only the output link from the prev (trans) stage can be controlled in this case.
by Sainath.Srinivasan
Wed Jun 29, 2005 3:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updatating a sequential file
Replies: 5
Views: 1528

If it is just one row, you can do it via any standard editor.
by Sainath.Srinivasan
Wed Jun 29, 2005 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Total no.of jobs in a Project
Replies: 6
Views: 1719

Note that the dsjob command will also return the status code.
by Sainath.Srinivasan
Wed Jun 29, 2005 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using routine read Hash file,generate 500 records of eachrow
Replies: 10
Views: 2760

If there are only 5 rows, you can generate a trans stage to provide 500 rows and obtain the values.
by Sainath.Srinivasan
Wed Jun 29, 2005 2:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling DSRunJob....code=-99
Replies: 4
Views: 1329

Make sure that no-one is logged into the proj when you do that.
by Sainath.Srinivasan
Tue Jun 28, 2005 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts after 754K recs with Aggregator: %s
Replies: 20
Views: 6004

Did you monitor the memory or disk usage when this agg stage was running.

What is the derivation in the agg stage?
by Sainath.Srinivasan
Tue Jun 28, 2005 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run Job In Unix
Replies: 5
Views: 1129

You can run them as foreground process. They will not wait until you request it.
by Sainath.Srinivasan
Tue Jun 28, 2005 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Job Routine to archive input file
Replies: 9
Views: 1616

There must not be any quotes around the command.
by Sainath.Srinivasan
Tue Jun 28, 2005 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: load order
Replies: 6
Views: 1479

You can control this from the transformer which sends the rows by ordering the links.
by Sainath.Srinivasan
Tue Jun 28, 2005 4:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtract Year
Replies: 10
Views: 2015

I agree with Ray on the Feb date matter. You can perform OConv(IConv(dt)) to obtain the correct date in that case. But the requirement from the initial user is not yet clear as he has stated that he wants to find 'difference' between two dates. I have to compare the output with another date of same ...
by Sainath.Srinivasan
Tue Jun 28, 2005 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RowProcGetPreviousValue and RowProcCompareWithPreviousValue
Replies: 6
Views: 2413

Maybe if you want to retain the max value, then your logic must be changed to If RowProcCompareWithPreviousValue ( L_LectODS_SUIVI_ETAT_LOCATIF.ID_GROUPE_LOT) Then RowProcGetPreviousValue( L_LectODS_SUIVI_ETAT_LOCATIF.ID_DATE_DEBUT_VALIDITE)-1 Else L_LectODS_SUIVI_ETAT_LOCATIF.ID_DAT...
by Sainath.Srinivasan
Tue Jun 28, 2005 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List Of All Source Tables
Replies: 3
Views: 687

Maybe you can look for 'SELECT' or 'FROM' in your export file.
by Sainath.Srinivasan
Tue Jun 28, 2005 4:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run Job In Unix
Replies: 5
Views: 1129

If you run with -run option alone, they will run without waiting for finish.
by Sainath.Srinivasan
Mon Jun 27, 2005 10:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: InterProcess stage
Replies: 4
Views: 2311

It will be beneficial if you have more than one processor in your system.
by Sainath.Srinivasan
Mon Jun 27, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtract Year
Replies: 10
Views: 2015

Simplest way may be to split the year separately and concat it back after the computation.