Category: DQL
Comprehensive Overview of Documentum Product Suite
Documentum offers a range of products designed to manage information with robust security, governance, and compliance features. These products serve various business needs, from content management to workflow automation and archiving. Here’s a list of several key Documentum products: These products make up a comprehensive suite that helps organizations manage content throughout its lifecycle, ensure…
Enhancing Financial Operations: The Strategic Role of Documentum in the Finance Sector
Documentum is highly regarded in the financial services sector due to its robust features that cater to the stringent regulatory, security, and operational demands of this industry. Here are several ways in which Documentum supports financial institutions: 1. Regulatory Compliance Financial institutions face a myriad of regulatory requirements, such as the Sarbanes-Oxley Act (SOX), the…
DB Maintenance – fulltext index – Best Practice
indexing on dm_sys objects are configured in OOTB indexing. Their DBA is responsible setting up indexes on custom tables. Why does incremental indexing doesn’t work for the slowness they were facing? ANS:We won’t be able to answer this question as this question is for Microsoft SQL. Your DBA needs to check with MS support for…
Best code for file archive
this is a good code for archiving file: if (idFile.renameTo(new File(archiveFileRoot + FS + fileName))) { System.out.println(“252…successfully archived!”);} else { System.out.println(“254…Not archived!”);} never use: if (idFile.renameTo(new File(archiveFileRoot + FS + idFile.getName()))) { download OpenJDK: https://www.openlogic.com/openjdk-downloads
Tracing the Evolution: The History of Documentum
In the landscape of enterprise content management (ECM), Documentum has etched its name as a pioneering and enduring platform. Its journey from a novel idea to a cornerstone of digital document management reflects the evolution of technology, business needs, and the digital workplace. This blog delves into the history of Documentum, exploring its origins, milestones,…
Documentum vs. SharePoint: Why Documentum Holds the Upper Hand
In the digital era, where information is both a tool and a currency, the platforms we choose to manage this wealth of data can determine an organization’s efficiency, compliance, and overall success. Among the myriad of enterprise content management (ECM) systems available, Documentum and SharePoint emerge as two of the leading solutions. However, when delving…
Exploring Documentum: A Comprehensive Guide
In the vast expanse of digital content management solutions, Documentum stands as a colossus, offering robust capabilities for managing, storing, and retrieving a wide array of document types across various industries. This blog aims to demystify Documentum, exploring its core features, benefits, and practical applications that underscore its importance in today’s digital-first world. What is…
Orphan content cleanup
The following script cleans up the orphan content. dmfilescan -docbase_name <docbasename> -init_file D:\Documentum\dba\config\<docbasename>\server.ini -s filestorex_10 -scan_now FALSE -force_delete TRUE > D:\Temp\filescan_script_10202023.bat
Storage Update
If your storage is full, and you add a new drive/Storage, and need to route all new content to the new one. Here are some useful steps, you really need. Create the dql select ‘alter type ‘ + ti.r_type_name + ‘ SET DEFAULT STORAGE ”filestorex_11” ‘ from dm_store st, dmi_type_info ti where st.r_object_id=ti.default_storage and st.name…