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?
and/orcontstruction is intentional? – Tomalak Sep 8 '11 at 15:12and (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