Search found 358 matches

by loveojha2
Tue Nov 28, 2006 5:13 am
Forum: General
Topic: do a sql union in oracle stage
Replies: 3
Views: 2734

Various options: 1. SQL Join: If it is equi join select a.rowid,data_load_insert,data_load_update from tablea a,tableb b where a.rowid=b.rowid If it is full outer join select a.rowid,data_load_insert,data_load_update from tablea a full outer join tableb b on where a.rowid=b.rowid 2. Use lookup for j...
by loveojha2
Mon Nov 27, 2006 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execution of routine not happening
Replies: 7
Views: 2624

No, don't think it is possible from within the transformer, if the transformer is just following the Sequential file stage. Introduce one more stage in between (may be an IPC) (and try DSGetLinkInfo to get the processed row counts and call the routine to get the value to be written to the target tab...
by loveojha2
Sun Nov 26, 2006 11:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: source file layout
Replies: 2
Views: 771

Are there any separators in between the columns or it is a fixed length file.

You can read the entire row in the file as a column and after that you can process individual columns separately. With such a case you can still have same structure for both of the files.
by loveojha2
Wed Nov 15, 2006 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to clear RT_LOG****
Replies: 6
Views: 12874

I am unable to clear it by the clear job log option in director.. The operation hangs and gives some error..
What error it gives, can you please paste it over here.
by loveojha2
Wed Nov 15, 2006 1:45 am
Forum: General
Topic: How to delete IsMultiInstance?
Replies: 5
Views: 5394

BTW loveojha2, can you tell (tips) how do you conclude/frame this commands? I learnt it on this site only, and at the same time, DS_ROUTINES stores info about name, desc, etc of the routines and it is too a Hashed File, moreover by issuing LIST.DICT DS_ROUTINES you will be able to see the complete ...
by loveojha2
Tue Nov 14, 2006 11:50 pm
Forum: General
Topic: How to delete IsMultiInstance?
Replies: 5
Views: 5394

First make it modifyable using

Code: Select all

UPDATE DS_ROUTINES SET READONLY = 'NRO' WHERE READONLY = 'RO' 
and DSRID = 'routinename'
then delete it.
by loveojha2
Tue Nov 14, 2006 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 8002

Ok.. can you tell me if it is usual for a project with approx 2000 jobs and sequences to occupy 11 GB of space????
We have around 10K maps in one project with around 1 GB of space.
by loveojha2
Tue Nov 14, 2006 10:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 8002

How many jobs are there in the project? If they are not hugh in numbers. My advise could be taking export of the entire project with the executable and creating a different project with that, then you can make a comparison actually, since you have said that you are auto purging the log and you are n...
by loveojha2
Tue Nov 14, 2006 9:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 8002

Do you mean to say that I can DELETE these files?
No :wink:
Otherwise you will lose your project
by loveojha2
Tue Nov 14, 2006 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOGxxx Not Found
Replies: 9
Views: 4689

Check which job is 287?
Go to the director of the job and clear the job log, check whether it allows you to clear it or not, if yes, then re run the job.
by loveojha2
Tue Nov 14, 2006 9:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 8002

Check which files are relatively big in size and what is their type (log,RTBP,temp file)?

Just classify the space utilized by the different types of file, that may lead to some clue.
by loveojha2
Tue Nov 14, 2006 9:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 8002

Are there any jobs running with large number of warnings, if yes, then try to modify the jobs in such a way that you don't get warnings at all.
by loveojha2
Tue Nov 14, 2006 9:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 8002

Purge the log files periodically, you can set the options also from the Administrator of auto purge.
by loveojha2
Mon Nov 13, 2006 2:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Sequence Compiled Error
Replies: 4
Views: 2417

Are you using the omit option while logging into the datastage, if yes, try with username/passwd and re compile.
by loveojha2
Mon Nov 13, 2006 2:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limitation in Parameter size
Replies: 2
Views: 1155

There should be some upper limit on the no of parameters, but should accomodate almost all of the genuine param limit.

More over no limit to the no of character that can be passed (may be 2gb, if there is any).