Error in Compling Server jobs

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
tkbharani
Premium Member
Premium Member
Posts: 71
Joined: Wed Dec 27, 2006 8:12 am
Location: Sydney

Error in Compling Server jobs

Post by tkbharani »

When I am compiling any of my server job it throws an error " Error Calling RTLog<numbers>". Some times it says "check data stage is set up correctly"

Why is this occurring. Is rebuilding job index is the solution. I have searched forum but did not get solution.
Thanks, BK
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Please post the exact message.

Check also that your project directory's file system is not full, and that you have write permission to it.

Re-indexing is unlikely to help, as the log tables are not indexed.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
tkbharani
Premium Member
Premium Member
Posts: 71
Joined: Wed Dec 27, 2006 8:12 am
Location: Sydney

Post by tkbharani »

ray.wurlod wrote:Please post the exact message.

Check also that your project directory's file system is not full, and that you have write permission to it.

Re-indexing is unlikely to help, as the log tables are ...
Yes, I think my file system is full its almost 96% used. So what files I to delete from my project directory to bring it down.
Thanks, BK
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Anything in &PH& directory would be a good start. Clear the &PH& directory in all projects. Any file in &SAVEDLISTS& directory that has a name beginning with "&&S." is also not required.

Are there any temporary files (or temporary hashed files) that have been created in the project directory? If you are planning delete hashed files, beware that there's a right way and a wrong way - and using the operating system to delete hashed files from a project is the wrong way.

Allocate some time to checking your job logs. These really do need to be kept as small as possible, commensurate with your retention policy. If a job log is huge, look at it in Director, observe that there are millions of warnings, and purge old entries. If you want to reclaim some of the job log disk space, you will need to RESIZE job log tables.

A useful set of commands for gathering log file sizes are these:

Code: Select all

SELECT VOC WITH TYPE = "F" AND @ID LIKE "RT_LOG..."
ACCOUNT.FILE.STATS ALL LOCAL
These will, together, gather sizing information about all your log tables into a table called STAT.FILE. You can query this in various ways to identify the "hogs", for example

Code: Select all

SELECT * FROM STAT.FILE;
or even the pre-stored query

Code: Select all

LIST.FILE.STATS LOCAL
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply