Saturday, September 4, 2010 11:41

Posts Tagged ‘Documentum’

Check in v.s. Save

Sunday, May 2, 2010 21:53

Webtop lets you check in a document as the same (existing) version. However, when you do this the Content Server never sees a checkin call or event. Webtop simply sets the new file as content, updates any changed attributes, and saves the object. So a dm_save event ...

This was posted under category: Documentum, WDK Application  |  Read Full Story  |  0 Comments

DM_QUERY_E_TABLE_NO_ACCESS

Wednesday, April 28, 2010 3:05

Error - DM_QUERY_E_TABLE_NO_ACCESS the table xxx is not registered or you do not have access to it was thrown when I use a superuser to update one registered table. I checked both ACL setting and Table permit on this registered object. There's no error. After 30 minutes, I found a post ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Locate the rendition files

Tuesday, March 30, 2010 0:44

To find the path to the contents file of a rendition of a document, issue the following query from the dql editor. The example query below locates the contents for the pdf rendition of a file named 'Original'. To find other types of renditions, insert the appropriate format into this ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Platform Status: libjvm.so: cannot open shared object file: No such file or directory

Friday, January 29, 2010 21:46

Error " Generic Status: Library Open failed, Library Name: /dctm65/shared/java/1.5.0_12/jre/lib/i386/libjava.so, Platform Status: libjvm.so: cannot open shared object file: No such file or directory IDQL failed to run.  dmAPIInit() returned a failed status. " was thrown when executing IDQL command. I came across this issue after I installed one docbase on linux server. It seemed that ...

This was posted under category: Documentum, Linux  |  Read Full Story  |  4 Comments

Install oracle-10.2.0.3 and Documentum-6.5

Monday, December 28, 2009 11:49

The whole process is installing oracle 10.2.0.1 first then updating it to 10.2.0.3 You can follow this article step by step: http://www.itpub.net/viewthread.php?tid=806933&extra=&page=1 Note: I was installing oracle in RedHat Enterprise Linux 4 Update 3, the only missing package is gcc.You can get help from this page: http://hi.baidu.com/thinkinginlamp/blog/item/f91ad1138ac429025aaf53e2.html If you are installing oracle in linux ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Change doctype

Saturday, December 12, 2009 15:24

Changing objects from one type to another type is pretty easy..One dql statement is all it needs..However there are a few constraints on the hierarchy with which you can change types. Rules and Constraints on Changing Types There are some constraints when you change an object’s type: • The object’s current type and ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

DM_QUERY_E_REPEAT_REG

Tuesday, December 8, 2009 15:18

Here is the full error: "[DM_QUERY_E_REPEAT_REG]error: "You have specified repeating attribute(s) and columns from a registered table in the same select list." Please refer to the Server Reference Manual on page 3-67 in the section dealing with attribute values. It states that you cannot select ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Oracle Tuning Documentum Server

Monday, December 7, 2009 14:44

Modifying the dmcl.ini File on the Oracle WebCenter Content Service for Documentum Host On all computers that host the Oracle WebCenter Content Service for Documentum, you can increase the max_session_count variable in the dmcl.ini file to allow for additional concurrent sessions. By default, the ...

This was posted under category: Documentum, Oracle  |  Read Full Story  |  0 Comments

select clause and i_is_deleted

Wednesday, December 2, 2009 15:21

1.select clause:SELECT [ALL|DISTINCT] columns The optional ALL and DISTINCT keywords determine whether the SELECT statement returns duplicate rows. ALL returns all rows, including any duplicates. DISTINCT does not return duplicate rows. If neither keyword is included, the default is determined by the server’s default behavior. (The server’s default behavior is determined ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

delete a custom filetype using sql

Tuesday, December 1, 2009 16:03

The normal way to delete a custom file type is(dql): delete <type_name>(all) object; drop type <type_name>; if  when excuting the above statement,an error which says"Attempt to remove type<type_name> , which still has objects",you can excute this statement to get all the hidden objects: select * from <type name> (all) where i_is_deleted=1 or a_is_hidden=1 The ...

This was posted under category: Documentum  |  Read Full Story  |  1 Comment