Documentum has the concept of a registered table. It is basically a regular database table accessible via DQL. This allows you to add information to a regular database table and access it via regular DQL. To find out if you have any custom registered tables, run the following query:
select * from dm_registered where object_name not like 'dm_%'
Leave a comment