When retrieving objects in our documentum application it takes long time. We activated long running query option in data source och found that the below query is taking too much time:

select all 
  b.r_object_id, dm_repeating1_0.state_name, a.object_name 
from 
  dm_policy_sp  a, 
  dm_sysobject_sp  b, 
  dm_policy_rp dm_repeating1_0 
where 
    (
      (a.r_object_id=b.r_policy_id) 
      and (dm_repeating1_0.i_state_no=b.r_current_state) 
      and b.r_object_id in (N'a long, long list of IDs') 
      or a.r_object_id in (N'a long, long list of IDs')
    ) 
    and /* ...  */

As you see the table "a" is a policy table and it has just 7 records. But in the sql satatement after both of "or" operator we are looking for an object_id between 100 objects in table "a"! We executed a query and searched for those objects in table "b" (systemObjects) and we found that those objects belongs to table b!

The above query takes time about 17 min. When we changed the name of table after "or" operator in table to b. It took just 10 sec!

We suppose this query is wrong. We don't know if it is a bug in Documentum or we have configured documentum wrong. We do'nt know wehre we can find the DQL which creates this SQL or related components? Any idea?

link|improve this question

20% accept rate
1  
Are you sure the incorrectly nested and / or contstruction is intentional? – Tomalak Sep 8 '11 at 15:12
No I'm not. I can not find the related dql code! But the list of objects are no longer than 100, if the number of objects are more than 100 there will be another or looking for objects in table "a"! – Govan Sep 8 '11 at 15:19
First thing, try placing parentheses like this: and (b.r_object_id in (...) or a.r_object_id in (...)) because the way it currently is is most certainly wrong. – Tomalak Sep 8 '11 at 15:21
Yeah. We tried that. It work with parentheses. The problem is that it is Documentum which generates this sql. It not helps to modify the sql, we have to find the related DQLor configuration in Documentum. – Govan Sep 8 '11 at 15:40
1  
You should activate the dcml trace for your application. There you should see the dql which produced this query. – David Pierre Sep 13 '11 at 12:25
show 5 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.