Note: This tip only increases performance on pre-4i docbases. In most Documentum applications, you will find yourself writing code to find a set of attributes for a certain object. You will know the ID of the object, so you will issue a query with r_object_id in the where clause. The problem with this is that the r_object_id attribute is a string field that is not indexed in the underlying database. This means that if you query on r_object_id, the database must do a full tablescan to find the rows you are looking for. However, Documentum also stores the r_object_id in an indexed column. It converts the string to an integer and stores it in the r_object_id_i column. Therefore, searching on r_object_id_i is much faster than searching on r_object_id. If you don’t know the integer representation of a specific r_object_id value, you can convert it using the DQL ID operator.
Slow:
SELECT * FROM dm_document WHERE r_object_id = '090f42418000472f'
Fast:
SELECT * FROM dm_document WHERE r_object_id_i = ID('090f42418000472f')
On a docbase with 3600 objects, the first query took .620 seconds and the second query took .060 seconds.
When you create a custom object type with its own unique attributes, you are probably going to issue queries against some of those attributes. If your application queries against the same one or two attributes often (like part number or employee number), you can speed up performance dramatically by adding a database index to the underlying database on these one or two columns.
To do this, modify the database directly, or use Documentum’s built-in MAKE_INDEX
method. The syntax is:
make_index with type_name = '{object type}', attribute = '{attribute name}'
For performance reasons, it is best to keep your object hierarchy as shallow as possible. The reason for this is that each level of the object hierarchy is stored in a separate table in the database. In order to manipulate an object, the Documentum server must join that object type’s tables with the tables of all of the other object types in the hierarchy above it. The more levels in your hierarchy, the more tables that must be joined together. And database joins are very expensive.
For example the following object hierarchy must do 4 joins (one for each level) when you query on plant_maintenance_report.
dm_document
|
|
Report
|
|
technical_report
|
|
plant_maintenance_report
It is advisable to try to collapse this hierarchy. The typical way to do this is to add all the custom attributes to the report object and add an extra attribute that identifies the type of report. You can still query for plant maintenance reports by using a where clause like this: where report_type = 'Plant Maintenance Report'
. The resulting type hierarchy will look like this.
dm_document
|
|
Report
This is one of the less intuitive performance tricks, but it’s true. It is slower to constrain your search to a folder then it is to search the entire docbase. It is especially slow to issue a query that descends through all the sub-folders of a folder. Unless you have a compelling reason to search inside a folder (for example, if the only thing you know about an object is where it lives), don’t do it.
Because repeating attributes are kept in their own table in the database, when you query for a repeating attribute (such as keywords or r_version_label), Documentum must do a database join, which is slow. If you can avoid including repeating attributes in both your select list and your where clause, you can speed up your query.
In some cases, it is faster to search on a custom object type than it is to search on a parent object type. This is true when the total number of objects in the custom object type table is a small percentage of the number of objects in the supertype table. For example, assume that you have a custom object type named report
that is inherited from dm_document
. If there are 100,000 dm_documents and only 5000 reports, it will be faster to say select * from report
than it will to say select * from dm_document
.
Imagine that you are writing an application that generates a custom report. In this report, you will query the docbase for all the documents that are owned by the current user, and you will display the object name and title. There are two ways to go about this.
- Query the docbase for the r_object_id of all the documents that match the criteria, then loop through the query results and pull out the r_object_id. Once you have the r_object_id for an object, you can use the
get
API to get and display the object name and title.
- Query the docbase for the object_name and title of all the documents that match the criteria, then loop through the query results and pull out the object_name and title. Once you have them, you can display them.
The second method here is much faster because Documentum must only issue one query to the docbase. In the first method Documentum must issue one query to get the r_object_id and then for each item in the result set, it must issue another query to retrieve the object name and id.
When you issue a query in Documentum, Documentum does not know if the query will insert, update or delete any rows in the database. Therefore, it will open a special connection to the database just in case the query you are issuing need to update the database.
In order to issue a query in Documentum, the Documentum server must open a connection to Oracle. Since it does this all the time, it keeps a pool of connections available and shares these connections whenever possible. However, if a query is going to insert, update, or delete a row in the database, it can not share a connection with another query.
If you could somehow tell Documentum that your query is just a normal select query, it will share a connection, which is faster and uses less resources. You can tell Documentum that your query is a read-only query by using the readquery
API or the read query flag on the execquery
API. Here are two examples:
readquery,c,select * from dm_document
execquery,c,T,select * from dm_document
分享到:
相关推荐
Documentum Composer是一款由EMC公司开发的内容管理软件,它属于EMC Documentum产品线的一部分。Documentum是一个企业级的、以文档为中心的内容管理解决方案,它可以帮助企业捕捉、存储、保护、管理、交付和存档关键...
Documentum是一款由 EMC (现为戴尔科技的一部分) 开发的企业内容管理(ECM)系统。这个系统主要用于管理和控制组织内的数字内容,包括文档、图片、视频、音频和其他类型的文件。Documentum的核心功能包括文档管理、...
Documentum是EMC公司开发的一款企业级内容管理系统(Enterprise Content Management,ECM),它主要用于管理和控制组织内的数字内容。在本文中,我们将详细介绍如何搭建一个Documentum环境,以供学习和测试之用。 ...
Documentum是一款由EMC公司(现已被Dell收购)开发的企业级内容管理(ECM,Enterprise Content Management)系统。它提供了全面的文档管理和协作功能,适用于各种规模的企业,尤其在金融、医疗、政府和制造等行业...
5. 设置Documentum环境变量,包括$DOCUMENTUM(Documentum的安装目录)、$DM_HOME($DOCUMENTUM/product/version_number,例如$DOCUMENTUM/product/6.0)以及$DOCUMENTUM_SHARED(EMC Documentum Foundation类的安装...
### Documentum 6.5 架构概览 #### Documentum 技术架构概述 Documentum 6.5 的架构设计旨在提供一个高度可扩展、灵活且可靠的企业内容管理系统(ECM)。该版本强调了服务导向架构(SOA)的重要性,并在多个层面上...
### Documentum V6.5 安装步骤详解 #### 一、环境准备 在开始安装Documentum V6.5之前,需要确保环境已经准备好。主要包括以下几个方面: 1. **网络配置**:首先需要确保服务器的网络配置正确无误,包括正确的...
Documentum 是一款强大的企业内容管理系统(Enterprise Content Management, ECM),由甲骨文公司提供,用于管理组织内的各种非结构化信息,如文档、图像、视频等。这份"Documentum 官方资料"包含了两个关键部分:...
标题“documentum install for linux oracle”表明我们正在讨论在Linux操作系统上安装Documentum与Oracle数据库相关的流程。Documentum是一款企业级的内容管理系统(CMS),而Oracle则是一种广泛应用的关系型数据库...
文档标题:“Documentum Process Suite, A Comprehensive Overview” 文档描述:“Documentum Process Suite, A Comprehensive Overview” 标签:“Documentum BPM” 核心知识点:EMC Documentum Process Suite...
《Documentum内容管理基础》是针对企业级内容管理系统的一个核心概念和实践的详细介绍。Documentum是EMC公司推出的一款强大的企业内容管理系统(ECM),它主要用于管理和控制组织内的数字内容,包括文档、图像、视频...
### Documentum 产品介绍 #### 一、Documentum 产品概述 Documentum 是一款由 EMC 公司开发的企业级内容管理平台,旨在帮助企业管理和优化其内部的信息和文档资源。随着数字化转型的步伐加快,内容管理成为了现代...
Documentum DFC(Documentum Foundation Classes)是EMC Documentum内容管理平台的核心API,它为开发者提供了与Documentum系统交互的底层接口。这个最新的Documentum DFC API版本为开发人员提供了一系列工具,以便...
### Documentum系统管理知识点概述 #### 一、Documentum系统简介 Documentum系统是一款由Documentum Inc.开发的企业级文档管理系统。它旨在帮助企业管理和组织大量的文档数据,支持文档的创建、存储、检索、版本...
### Documentum 6.X 安装与配置详细指南 #### 一、Documentum 6.X 简介 Documentum 是一款由EMC公司提供的企业级文档管理和内容管理系统。Documentum 6.X 版本提供了丰富的功能和服务,包括文档管理、内容存储、...
不错的DOCUMENTUM资料
### Documentum 6.5 DFC Guide:深入解析与应用实践 #### 一、Documentum Foundation Classes (DFC) 概览 **Documentum 6.5 DFC Guide** 是针对EMC®Documentum® Foundation Classes (DFC) 的开发指南,主要介绍...