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
0
votes
1 answer

Selecting maximum value row using documentum query language (dql)

I have a few columns let's say r_object_id, date, c, d, e, f Now I want to have results such that only the object id row with maximum maximum dates remains Eg: If the values are R1, 29nov, c1,d1,e1,F1 R1, 30nov, c2,d2,e2,f2 R2, 20nov,…
Shivam
  • 383
  • 1
  • 3
  • 8
0
votes
1 answer

Damaged Pdf after setting content from a server response

I am currently making rest calls to a server for signing a pdf document. I am sending a pdf(binary content) and retrieving the binary content of the signed pdf. When i get the binary content from the inputStream: try (InputStream inputStream =…
komplRX
  • 5
  • 6
0
votes
1 answer

Connecting with Documentum using java project

Hi I'm new to Documentum, I want to connect to Documentum dql with my java code to perform select queries to fetch some data. How can I connect with the Documentum server in a java project and what are the requirements for the same?
0
votes
1 answer

How can I get document hash from documentum using DQL?

Using DQMan or Document Admistrator, what's DQL statement to get hash of document in DCTM? Select ... ? If it's not possible how can I get it? (I know exactly which is the document, r_chronicle_id, r_object_id, etc...)
Falco
  • 1,458
  • 3
  • 19
  • 47
0
votes
2 answers

better and fastest way to get result from a DQL query using Select

Can anybody tell me how to make this DQL query more faster and better because i am using a SELECT to get a very large amount of rows from a very large Table created in Documentum select r_object_id from table1(all) where table1_attribute1 =…
kyle007
  • 1
  • 1
0
votes
1 answer

Reading a custom double value from a Documentum query

I am trying to calculate an average value with the Documentum API, like this: final IDfQuery checkMediaDocs = (IDfQuery) new DfQuery(); IDfCollection mediaDocs = null; checkMediaDocs.setDQL("select sum(tot_doc_daily)/count(*) as mediaglobale from…
Andrea
  • 6,032
  • 2
  • 28
  • 55
0
votes
1 answer

Is it possible change length of native documentum attributes of dm_document type?

Launching: ALTER TYPE dm_document MODIFY title string (1000); I get: Is it possible to do these kind of things in some other manner?
Falco
  • 1,458
  • 3
  • 19
  • 47
0
votes
2 answers

Documentum string attribute which oracle data type is?

We have Documentum 16.7 with Oracle 12. Our supplier stands that Documentum uses fixed data type for Oracle. So I found old documents…
Falco
  • 1,458
  • 3
  • 19
  • 47
0
votes
1 answer

Docbase could not connect to the database error in documentum content server installation

While I am installing Documentum content server on AWS EKS, I am receiving this Error. Postgress DB is installed on EC2 VM. 14:20:47,013 INFO [main] com.documentum.install.server.installanywhere.actions.DiWAServerModifyDocbaseDirectory - The…
Vinayak S.
  • 382
  • 2
  • 7
0
votes
2 answers

Apache Tomcat startup error

I'm receiving this error when starting tomcat: 16:27:21,027 ERROR [main] com.documentum.web.common.Trace - An error occurred during application intialization : org/eclipse/emf/ecore/resource/ResourceSet java.lang.NoClassDefFoundError:…
Ayrad
  • 3,996
  • 8
  • 45
  • 86
0
votes
1 answer

Contents of file not getting decoded correctly even when getting success response in Postman

I am trying below work related to Documentum REST API calls. I believe issue is more towards decoding base64. I think so... Client application - > Documentum API call to save document Client application calls API to "create" document -- Works…
0
votes
4 answers

In Documentum 6.5 my TBO's are being triggered even when the document is a template

When creating and modifying document templates in Documentum 6.5 my TBO for that object type is being triggered. In 5.3 creating a template did not trigger the TBO. This is a problem because I have the TBO doing all sorts of things with documents…
joe
  • 16,988
  • 36
  • 94
  • 131
0
votes
1 answer

CmisObjectNotFoundException : Repository does not exist

Using a CMISTestClient, I am trying to connect with documentum repository. There are no exceptions at weblogic server logs(having server at localhost, where ear is deployed) but my standalone client is throwing exception as…
arjun99
  • 358
  • 1
  • 8
0
votes
1 answer

Documentum API in java

I am currently using DQMAN for my OpenText Documentum. I use it for DQL and API. Now that i am using a java program to run my dql (with the help of DFC), i also need a way to run my API commands in java. Eg : of my API command :…
JESSIE
  • 7
  • 6
0
votes
1 answer

Exporting to Excel with DQMan - Date Format issues

I've been tasked with exporting record metadata from a documentum repo using DQMan. However, I frequently encounter issues with date formats. They output in DQMan in "dd/mm/yyyy hh:ss" format, but when 'Exporting to Excel' the dates seem to output…
HotSauceCoconuts
  • 301
  • 5
  • 19