Search found 23 matches

by manojmathai
Fri May 19, 2006 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Built in function to add months in a date
Replies: 8
Views: 4677

Hi Create a job with parameter as the date to which 25 months are to be added to. Inside the job have DB2 stage or similar database stages. Define metadata with one field and type date. In the sql you write Select #Parameter# + 25 Months from sysdummy1. Or if you are using oracle select add_months(#...
by manojmathai
Wed May 10, 2006 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: delete large number of records in DB2
Replies: 17
Views: 16769

Hi You can alter the table using command so that the table will not write to rollback segment. I am not sure about the commands. Its some thing like ALTER TABLE table_name ACTIVATE NOT LOGGED INITIALLY; DELETE FROM table_name... COMMIT; This will help you delete from the table faster. Thanks Manoj
by manojmathai
Mon Apr 03, 2006 3:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Client hangs while trying to view the log files
Replies: 11
Views: 4484

Hi

I think this can be due to the log file size only.

You can try renaming the job, It may take time but still leave it. I feel renaming the job is faster than clearing the logs. After this you can try running the job for one row and check the warning, Correct the error and try again.

Regards
Manoj
by manojmathai
Tue Mar 28, 2006 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing Indexes
Replies: 6
Views: 2964

Hi

Try a dummy job to select count(*) from some table .In the before / after SQL write the index dropping SQL.

Thanks
Manoj
by manojmathai
Sun Jan 22, 2006 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters from File
Replies: 9
Views: 3238

HI

Can you please do a DSLogInfo and see if the parameter is read from the file correctly or not.

Regards
Manoj.
by manojmathai
Fri Dec 16, 2005 2:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to understand the routines in datastage
Replies: 3
Views: 3136

Hi

I think the routine you have given is not complete.
Pls give the complete routine to infer something from it.

Regards
Manoj.
by manojmathai
Tue Nov 22, 2005 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: increase performance
Replies: 7
Views: 3413

Hi

Try using unix sort instead of datastage sorting.
Unix sort works in great speed compared to datastage sort stage.

Thanks
Manoj.
by manojmathai
Thu Sep 22, 2005 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log hangs when trying to view
Replies: 6
Views: 3312

Hi

The view hangs because there are too many logs.
You try renaming the job. This will clear the logs for this job.
Later you run the job with less number of rows( may be 10 or 100) and find out the log that is created by the job.
Correct the error that run the job again.

Thanks
Manoj
by manojmathai
Tue Sep 13, 2005 10:00 am
Forum: General
Topic: Find the Last Modified Date of a Job
Replies: 12
Views: 9477

Hi

Thanks a Lot.
I am able to find out the time of last change by your support, Thanks again.

Is there any way to know the user id which modifed the job.

Best Regards
Manoj.
by manojmathai
Tue Sep 13, 2005 5:56 am
Forum: General
Topic: Find the Last Modified Date of a Job
Replies: 12
Views: 9477

Hi

No, The Job is not compiled.
I want to know the last saved time of the job.

Thanks
Manoj.
by manojmathai
Tue Sep 13, 2005 5:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find a huge job log
Replies: 14
Views: 6252

Hi

Find the log file that has the maximum size in the projects directory.
It will start with name as RT_LOG(I think)
Open the file to see the first line in the file.
The jobname will be in there in that line.

Thanks and Regards
Manoj
by manojmathai
Tue Sep 13, 2005 5:27 am
Forum: General
Topic: Find the Last Modified Date of a Job
Replies: 12
Views: 9477

Find the Last Modified Date of a Job

Hi

Is there a way to know the last modified date of a Server Job.

Thanks and Regards
Manoj
by manojmathai
Fri Sep 09, 2005 9:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum Records possible in a Hash File
Replies: 1
Views: 1182

Maximum Records possible in a Hash File

Hi

Can anyone tell what is the maximum number of records that can be kept in a Hash File.

Thanks in Advance

Manoj
by manojmathai
Wed Aug 31, 2005 1:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Count warnings and stop job
Replies: 13
Views: 4388

Hi
I was under an impression that you are using a batch job to call individual jobs in sequence.

You can use a batch job to call the individual jobs instead of using the sequencer. While calling the individual jobs you can set the limit for each jobs using this command.

Thanks
Manoj
by manojmathai
Tue Aug 30, 2005 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Count warnings and stop job
Replies: 13
Views: 4388

Hi

Use the following
ErrCode = DSSetJobLimit(hJob1, DSJ.LIMITWARN, 50)
before running the job in the Batch which call individual jobs.
Pls set the warnings accordingly for each jobs.

Regards
Manoj