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
3
votes
0 answers

Documentum: Invalid property definition ID was supplied : cmis:contentStreamFileName

I am sending a valid CMIS query to Documentum 7.1 and get a Bad Request response: GET…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
3
votes
3 answers

alternative to dfc.properties

We're connecting to documentum server from Java progream (using dfc.jar) to pull the documents. In order to connect to the server, it requires us to make dfc.properties available in the classpath. We already have one master properties file, so want…
3
votes
2 answers

Documentum Query Language Inner Join

I'm working with DQL queries but don't have access to the EMC resources, and I'm new to development in general with some experience in SQL. I want to do an INNER JOIN between two tables, but can only do a LEFT JOIN for some reason. I've noticed…
GoldAnchor
  • 129
  • 4
  • 13
3
votes
2 answers

disable full-text search for webtop simple search component

In the simple search component in webtop, how do you disable full text search and just use the database? I would like to keep the advanced search searching full text. I understand that fulltext search can be disabled comepletely in the…
Ayrad
  • 3,996
  • 8
  • 45
  • 86
3
votes
3 answers

How to checkin a file with a new updated file by DFC code in Documentum

I am new to Documentum DFC and I write a code using DFC API to check out a document and it worked properly. But now I want to check in the same file with a new file that is present in my local pc's drive with. I have tried to search it but didn't…
3
votes
3 answers

Copy documentum content with apache IOUtils.copy() and setContent()

I want to copy the content from one object stored in one docbase to another object stored in another docbase. I do not want to create a file because I have more than 300 k files to copy. Below is a part of my code: ByteArrayOutputStream baos = new…
enguerran
  • 3,193
  • 3
  • 26
  • 42
3
votes
3 answers

What is the getQuery method for?

Documentum sample code is never deeply commented, so my question is: What does this line mean? IDfQuery query = DfcUtils.getClientX().getQuery();
enguerran
  • 3,193
  • 3
  • 26
  • 42
3
votes
2 answers

Documentum: Oracle database Date time difference and I_LATEST_ FLAG

I am not sure how to phrase technically properly. Introductions We are using documentum 6.0 and oracle 11g. I have try to search documentum using DQL and it fail miserablely in terms of performance even after index and tuning. Part of the reason is…
seesee
  • 1,145
  • 5
  • 20
  • 46
3
votes
2 answers

tomcat, 2 webapps, 2 log4js, but both apps log to one file

To elaborate on that, I have a Tomcat server version 7.0.27 running Java 1.6.0_27. I have two wars, each with their own log4j jar, also using slf4j with slf4j-log4j. Each war has it's own configuration file (log4j.xml). war 1 should use file…
rozner
  • 580
  • 2
  • 5
  • 11
2
votes
1 answer

DQL to find attribute's table

We can always find a respective table attribute from a table by syntax(select * from table_name), is there way to do the vise versa I mean is there any way to find tables name with attribute name?
RAJ
  • 123
  • 5
  • 16
2
votes
1 answer

How can I connect to Documentum with Emc.Documentum.FS.Runtime using C# without the app.config for the ModuleInfo tags?

Sample code using the app.config: ContextFactory contextFactory = ContextFactory.Instance; IServiceContext serviceContext = contextFactory.NewContext(); app.config section I'd like to set in code instead of having the API read it…
2
votes
1 answer

Include Version Labels when exporting via DFC (Documentum)

I am exporting a document that has the following version labels: "V1, CURRENT, 1.2" But my exported XML document only includes this text: dctm:version_label="CURRENT". Anyone know how I can export all of the version labels into the XML? I am using…
joe
  • 16,988
  • 36
  • 94
  • 131
2
votes
2 answers

Creating a folder with DFC (Documentum)

I'm facing a strange problem. All I want is to create a new folder with the DFC. But when I execute the code (JUnit or inside the Application) no folder is created and surprisingly no exception is thrown. So I guess the error is somewhere else. This…
Benjamin Brandmeier
  • 724
  • 1
  • 9
  • 19
2
votes
2 answers

How do I clear up Documentum rendition queue?

We have around 300k items on dmi_queue_item If I do right click and select "destroy queue item" I see the that row no longer appears if I query by r_object_id. Would it mean that the file no longer will be processed by the CTS service ? Need to…
Allende
  • 1,480
  • 2
  • 22
  • 39
2
votes
1 answer

Hibernate Entity with @ElementCollection and @CollectionTable. Hibernate add attribute name to SQL statement when retrieve the collection

In my case I have two Tables: parent 'VDI_DICT_EMPOYEES_SV' and chield 'VDI_DICT_EMPOYEES_RV' joined by column with the same name 'R_OBJECT_ID'. (See ER Diagram) The structure of the 'parent' Entity…
vzateychuk
  • 301
  • 1
  • 3
  • 12
1
2
3
24 25