job still in running

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
loric
Participant
Posts: 5
Joined: Tue Jul 19, 2005 5:10 am

job still in running

Post by loric »

I have a simple ds job: Dataset - lookup with a table - lookup with an other table - load in table.
The job remain in running ......without a reason!:-(

Could someone help me?
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Loric,

you have just asked the car-equivalent question of "My car always stops running after I start it. Why?". How can we answer you question without knowing more about your problem.

a) there is always a reason.
b) Does it always "hang"
c) Does it process a number of rows or stop at the first row?
d) What stage is causing the problem? (you need to debug this yourself, but commenting out or replacing stages and adding "peek" stages)

There will be more questions depending on the answers, but it will provide a start.
manteena
Premium Member
Premium Member
Posts: 38
Joined: Thu Feb 10, 2005 1:43 pm
Location: USA

Post by manteena »

I think Table look up is kiiling your time...
If data sets are small enough handle with hash files...
Then you'll see it stops sometime :wink:
richdhan
Premium Member
Premium Member
Posts: 364
Joined: Thu Feb 12, 2004 12:24 am

Post by richdhan »

Loric,

Make sure if there any locks on database tables.

If you are on Oracle just check the following with your DBA

Code: Select all

1. select * from v$lock where type = 'TM'

ADDR     KADDR           SID TY        ID1        ID2      LMODE    REQUEST
-------- -------- ---------- -- ---------- ---------- ---------- ----------
     CTIME      BLOCK
---------- ----------
803EECF0 803EED04         53 TM     251183          0          3          0
      2423          0


2. select object_name from dba_objects where object_id = 251183
HTH
--Rich
kumar_s
Charter Member
Charter Member
Posts: 5245
Joined: Thu Jun 16, 2005 11:00 pm

Post by kumar_s »

Hi,
What do you find in director
Is it stoped at certain stage??
Is it not starting??
Is it progressing slowly??
The same is experienced for multiple runs??
Answer for each question may give different result.


-Kumar
Post Reply