Saturday, March 20, 2010 23:20

‘Documentum’ News

Subscribe to RSS feed

SVN: Attempted to lock an already-locked dir

Wednesday, February 10, 2010 13:10

So you’ve been working hard on your project and you’re ready to check in when all of a sudden Subversion throws you this weird error message: Attempted to lock an already-locked dir. “What the hell is this about?” you ask yourself. Well, Subversion is a really cautious fella and likes ...

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 ...

Tagged with: ,

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 ...

Tagged with: ,

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 ...

Tagged with:

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 ...

Tagged with:

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 ...

Tagged with: ,

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 ...

Tagged with:

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 ...

Tagged with:

What’s wrong with today’s Enteprise 2.0 offerings

Tuesday, December 1, 2009 14:08

In the report, "[Enterprise Content Management's Next Step Forward|http://www.forrester.com/Research/Document/Excerpt/0,7211,44243,00.html]", Forrester makes the point that Enterprise Content Management (ECM) does not work for most enterprises.  Current ECM implementations provide  poor support for how most business people, especially information workers, work; and IT organizations are in perpetual catch-up to the ever ...

Tagged with:

Armedia Code Generator

Tuesday, December 1, 2009 13:55

Just FYI. From my point of view, it is not necessary to use this tool/method. Armedia CodeGen generates Data Access Objects (DAOs) and Data Transfer Objects (DTOs) for Documentum object types. DAOs and DTOs are design patterns for encapsulating persistent data sources and data. Design patterns are common approaches to solving ...

Tagged with: