Search found 358 matches

by loveojha2
Thu Nov 09, 2006 2:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove "Phantom" Job
Replies: 8
Views: 2478

You dont need admin rights to unlock jobs
Hey narasimha, are you preety sure of that?
have you tried that using a login without admin rights?

I somehow remember doing it and it didn't work, just confirm.
by loveojha2
Thu Nov 09, 2006 2:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we use Source and target differently?
Replies: 2
Views: 963

No, it won't have any problems.

Only thing that you need to make sure is you map the columns to compatible datatype columns from source to target.
by loveojha2
Thu Nov 09, 2006 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update and Insert using user defined sql in ODBC stage
Replies: 8
Views: 3241

Also if you have single job with "upsert" option (update + insert) you may end up loosing processing time to check whether it is update or insert. Therefore I will sugesst you to go for two links instead of one. That is again based on the case by case. Say for e.g., if you are bringing th...
by loveojha2
Thu Nov 09, 2006 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback when job finishes with warnings
Replies: 6
Views: 1969

loveojha2 wrote:Do get rid of such a dataloss case, make sure your job aborts even when it generates a warning, if that's what you want.
Just a typo

To get rid of such a dataloss case, make sure your job aborts even when it generates a warning, if that's what you want.
by loveojha2
Wed Nov 08, 2006 10:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update and Insert using user defined sql in ODBC stage
Replies: 8
Views: 3241

Why do you want to go the user defined sql way.

Please provide the sql then you are trying to accomoplish, may be we can think of an alternate solution.
by loveojha2
Wed Nov 08, 2006 10:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback when job finishes with warnings
Replies: 6
Views: 1969

Do get rid of such a dataloss case, make sure your job aborts even when it generates a warning, if that's what you want.
by loveojha2
Wed Nov 08, 2006 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Copy tables from one Database to another Database
Replies: 8
Views: 5616

ray.wurlod wrote:It's called Runtime Column Propagation and you get it in parallel jobs. ...
Runtime Column Propagation, meaning it happens at the runtime only or there are methods of doing it with the job metadata also. :?
by loveojha2
Wed Nov 08, 2006 10:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove "Phantom" Job
Replies: 8
Views: 2478

You can unlock the jobs using the tool DS.TOOLS . You need to execute it from within the command window of the Administrator. Plus you would need admin rights only then you can unlock it. Just follow the instructons that come when you execute it, I am sure you'll be able to find it, since the messag...
by loveojha2
Wed Nov 08, 2006 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting String
Replies: 28
Views: 8030

ie only keys which end with X in input should not have that X in output
Using Matches operator or Colname[Len(Colname)]='X' could be a more suitable for this, before chopping the last X and use Left operator for removing the training
by loveojha2
Wed Nov 08, 2006 9:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FULL outer join
Replies: 20
Views: 8514

Or left outer joins doing two times,

Something like

Code: Select all

              Table
               |
SrcFile ---->Trx----->Tgt

             Srcfile
              |
Table------>Trx------->Tgt
if you don't want to use the link merge stage.
by loveojha2
Mon Nov 06, 2006 9:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Out Error
Replies: 3
Views: 1410

How many jobs were running at that time on the server?

Your server is overloaded and it can't serve the new request for now.

Try rerunning the job and see you get the same error again or not. If yes, then run your job when your server is relatively idle.
by loveojha2
Fri Nov 03, 2006 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: incomplete loading of data from Feed file
Replies: 2
Views: 1249

Is it paramterized job, are you using any parameters (may be different values could be a cause.)


How it is showing in the job after the complete job run.(how many rows selected, written to the links).
by loveojha2
Fri Nov 03, 2006 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence reset
Replies: 12
Views: 4860

How about concatenating the key columns and passing the concatenated value for the sequence generation.

Something like using the

Code: Select all

KeyMgtGetNextValueConcurrentBATCH(col1 : Col2 :Col3)
by loveojha2
Tue Oct 10, 2006 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: .dsx export withou using Client
Replies: 17
Views: 6437

I don't think that it is possible to do it without client (not sure what is your definition of client?)
What you exactly want to do? Plz Explain.
by loveojha2
Thu Oct 05, 2006 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Same job
Replies: 4
Views: 1917

Two options: 1. Use parameterized File Names within the server job and run it from a sequence job providing the value for the parameter. You can include Loop activity to do it for multiple times. File Names can be read from within a Routine. 2. Use parameterized file names and create the job as mult...