Questions tagged [documentum]

Documentum is an enterprise content management platform, now delivered by EMC Corporation, as well as the name of the software company that originally developed the technology.

Documentum is an enterprise content management platform, now owned by OpenText, as well as the name of the software company that originally developed the technology.

Documentum code can be written in a variety of programming languages depending on the database or environment. Using idql32.exe/idql64.exe or iapi32.exe/iapi64.exe on the content server, you can execute or . The or languages can also be executed within Documentum Administrator (DA) from the Tools menu. Using Oracle SQL Developer, you can execute . Using Microsoft SQL Server Management Studio, you can execute .

Related Tags:

Links:

365 questions
7
votes
6 answers

Which Documentum APIs should I use?

There seems to be a number of options for interfacing to Documentum; WDK, DMCL, DFC, DFS, DQL, etc. What else is there? When whould you use which interface? For .NET developers, for Java developers?
Jesse James
6
votes
3 answers

Raw SQL in DFC (Documentum)

In DFC one can execute SQL directly (bypassing DQL) using the IDfSession.apiExec() method. The problem is that the method is marked as deprecated in the current (6.x, 7.x) versions of the DFC API. Here's some example code using the deprecated…
eivamu
  • 3,025
  • 1
  • 14
  • 20
6
votes
4 answers

DQL query to return all files in a Cabinet in Documentum?

I want to retrieve all the files from a cabinet (called 'Wombat Insurance Co'). Currently I am using this DQL query: select r_object_id, object_name from dm_document(all) where folder('/Wombat Insurance Co', descend); This is ok except it only…
Jason Pather
  • 1,127
  • 2
  • 12
  • 18
5
votes
3 answers

How do you update a locked record in Documentum using DQL?

I'm unable to update the record with DQL due to a lock. Is it possible to unlock the record, update it and lock it again? I'm running the following code in idql64.exe on the content server. UPDATE dm_document objects SET keywords = 'D' WHERE…
aduguid
  • 3,099
  • 6
  • 18
  • 37
4
votes
2 answers

Documentum DQL: How can I get UTC time zone for Date columns to parse to .NET?

Documentum (DQL via DFC) always returns Date result columns as a string formatted like this: Wed Oct 19 16:01:59 PDT 2011 ...and the .NET DateTime.Parse function chokes on this — especially the PDT time zone (TZ henceforth) part of the strings —…
Scott Baker
  • 10,013
  • 17
  • 56
  • 102
4
votes
2 answers

DQL query to find active users count

Can someone suggest me a DQL query to find the count of active users in a repository in documentum. Below is the query I am using but it is not giving correct results, can someone suggest? select count(user_name) from dm_user u , dm_group g where…
4
votes
2 answers

how to get document content using DFC in c#

I have documentum developer edition 6.6. I want to get document content (read content into stream) using DFC in c#. I have used following C#.net code IDfId id = collection.getId("r_object_id"); IDfDocument doc = (IDfDocument)…
khalid khan
  • 73
  • 2
  • 5
3
votes
3 answers

XML mapping during Documentum to Tridion migration

Are there tools or utilities for converting Documentum XML files into content in SDL Tridion? I would prefer a relevant XSL example or an XSLT file for such an XML-XML transformation between the systems.
User 4.5.5
  • 1,311
  • 3
  • 12
  • 20
3
votes
2 answers

Webtop DRL link directly to edit

Is there any way to create a Webtop DRL link so that it instead of asking whether the user wishes to VIEW / EDIT/ ANNOTATE, it goes straight to EDIT mode and just opens up the document, bypassing the question altogether? Thanks bgs264
bgs264
  • 4,572
  • 6
  • 38
  • 72
3
votes
1 answer

soap4r custom headers

I've been working with soap4r and trying to use the SOAP::Header::SimpleHandler, I'm trying to get it to put a custom header on the outgoing message, but I can't work out how to get it to include attributes rather than as subelements: class…
Luke Chadwick
  • 1,648
  • 14
  • 24
3
votes
3 answers

Inserting data into list of map taking too much time in Java

I have a task to send the automated report daily. So, I'm basically writing the query result set/collection into list of map so that I can write that data to excel. Here, I have the following method that inserts collection data into list of map. The…
sb709057
  • 45
  • 6
3
votes
1 answer

Java problem on AIX 6.1 - Processing dump event "gpf", detail ""

I have problem with EMC's Documentum Java on AIX 6.1 server. I have install it in /dctm/dfc_shared/java/1.6.0_00/. For example when I run command "java -version" from /dctm/dfc_shared/java/1.6.0_00/jre/bin, I get this error: dmadmin@czprguxdv23$…
Michell-Boy
  • 31
  • 1
  • 2
3
votes
0 answers

Documentum error : [DM_SESSION_E_RPC_ERROR]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
3
votes
1 answer

documentum DQL command exec count_sessions - what means columns "hot_list_size", "warm_list_size","cold_list_size"?

I found undocumented DQL command in documentum (tested on D6.5) exec count_sessions what means columns "hot_list_size", "warm_list_size","cold_list_size" in output of this query?
qwazer
  • 7,174
  • 7
  • 44
  • 69
3
votes
8 answers

DQL-Documentum query

Can any one please provide a solution in Documentum Query Language to access the folder details of a file checked out from documentum if we provide the object_id of the corresponding file. Thank You.......
Anjana
  • 1,447
  • 5
  • 23
  • 33
1
2 3
24 25