{"id":2175,"date":"2014-08-07T08:37:00","date_gmt":"2014-08-07T06:37:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/"},"modified":"2014-08-07T08:37:00","modified_gmt":"2014-08-07T06:37:00","slug":"documentum-useful-queries-dqliapi","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/","title":{"rendered":"Documentum: some useful queries (DQL\/IAPI)"},"content":{"rendered":"<p>In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.<\/p>\n<h3>1. xPlore<\/h3>\n<p>It regroups both the search engine and the index management.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">DQL Dsearch<\/legend>\n<p>select * from dm_document search document contains &#8216;manual.doc&#8217;<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query will perform a search just as if you put the &#8216;manual.doc&#8217; in the search field of DA. It can be used to check if the dsearch is working fine and if the indexing has been performed correctly. If not, it will return 0 results for a document that you know does exist in the docbase.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Index Waiting<\/legend>\n<p>select count(*) as awaiting_15 FROM dmi_queue_item a, dm_sysobject (all) b WHERE b.r_object_id = a.item_id AND a.name=&#8217;dm_fulltext_index_user&#8217; AND date_sent &gt; date(now)-(<strong>15<\/strong>*1\/24\/60) AND (a.task_state is NULL or a.task_state = &#8216; &#8216;)<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query will return the number of items waiting to be indexed since 15 minutes. The parameter can be changed to 60 minutes or whatever, you just have to change the &#8217;15&#8217; in bold in the previous query.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Index In Progress<\/legend>\n<p>select count(*) as in_progress_15 FROM dmi_queue_item a, dm_sysobject (all) b WHERE b.r_object_id = a.item_id AND a.name=&#8217;dm_fulltext_index_user&#8217; AND date_sent &gt; date(now)-(<strong>15<\/strong>*1\/24\/60) AND a.task_state = &#8216;acquired&#8217;<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This one is similar to the previous, but it returns the number of &#8216;in progress&#8217; indexing requests. Note that the parameter can still ne changed.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Index By State<\/legend>\n<p>select task_state,count(*) from dmi_queue_item where name = &#8216;dm_fulltext_index_user&#8217; group by task_state<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query lists the number of indexes by state:<\/p>\n<ul>\n<li>blank -&gt; awaiting indexing<\/li>\n<li>aquired -&gt; in progress<\/li>\n<li>warning<\/li>\n<li>error<\/li>\n<li>done<\/li>\n<\/ul>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Delete Indexing Request<\/legend>\n<p>delete dmi_queue_item object where item_id=&#8217;09xxxxxxxxxxxxxx&#8217;<\/fieldset>\n<p>&nbsp;<\/p>\n<p>Sometimes I noticed there are indexing requests on deleted documents. In fact, it can happen if someone saved a document, then deleted it right after. The indexing request remains in the queue for life. Thus, you may want to delete it. First, check if the file is deleted by running the IPAI: dump,c,09xxxxxxxxxxxxxx. If an error occurs telling the document doesn&#8217;t exist anymore, you can delete it.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Index Agent Info<\/legend>\n<p>select fti.index_name,iac.object_name as instance_name from dm_fulltext_index fti, dm_ftindex_agent_config iac where fti.index_name = iac.index_name and fti.is_standby = false and iac.force_inactive = false<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query returns your configured index agent information. It is useful for the IAPI command returning the index agent status (see below).<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Index Agent Status<\/legend>\n<p>apply,c,NULL,FTINDEX_AGENT_ADMIN,NAME,S,<strong>DOCBASE_ftindex_01<\/strong>,AGENT_INSTANCE_NAME,S,<strong> HOST._9200_IndexAgent<\/strong>,ACTION,S,status<br \/>\nnext,c,q0<br \/>\nget,c,q0,status<br \/>\nclose,c,q0<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This script returns the Index Agent Status (Running, Stopped, and so on). Note that you have to replace the Indey Agent information in the first line by your Index Agent. You can get these information thanks to the DQL query above.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Manually Queue Index Request<\/legend>\n<p>queue,c,<strong>09xxxxxxxxxxxxxx<\/strong>,dm_fulltext_index_user,dm_force_ftindex<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This one simply puts an indexing request in the queue. You have to replace 09xxxxxxxxxxxxxxx by the r_object_id of the document you want to queue.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Display Dsearch Port<\/legend>\n<p>cat $DOCUMENTUM\/dsearch\/admin\/xplore.properties | grep port<\/fieldset>\n<p>&nbsp;<\/p>\n<p>For this one you have to go to the xPlore server, it shows the configured dsearch port.<\/p>\n<h3>2. Rendering (ADTS)<\/h3>\n<p>The following queries concern the rendition component. It regroups the rendition queue check and the way to manually ask a rendition through IAPI.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Manually Queue Rendering Request<\/legend>\n<p>queue,c,<strong>09xxxxxxxxxxxxxx<\/strong>,dm_autorender_win31,rendition,0,F,,rendition_req_ps_pdf<\/fieldset>\n<p>&nbsp;<\/p>\n<p>As the indexing request, this one puts a PDF rendition request in the queue. It can be useful when scripting or in DFC programs.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Rendering By State<\/legend>\n<p>select task_state,count(*) from dmi_queue_item where name = &#8216;dm_autorender_win31&#8217; group by task_state<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This returns the rendition requests by state.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Rendering Queue<\/legend>\n<p>select * from dmi_queue_item where name =&#8217;dm_autorender_win31&#8242; order by date_sent desc<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query returns all documents present in the rendering queue. That means all document waiting for rendition.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Rendition Failed<\/legend>\n<p>select r_object_id,item_id,name,item_name,date_sent from dmi_queue_item where event =&#8217;DTS&#8217; order by date_sent desc<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This Query returns the failed renditions. Be aware of the date_sent field, because this queue is not cleared. This means that if a rendition request failed 3 times in a row and succeed the last time, there will be 3 rows in the failed queue, but the rendition did succeed. So you should verify that the rendition did succeed and if so, you can delete the row form of the failed queue.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Check Rendition Successful<\/legend>\n<p>select r_object_id from dm_document where object_name=&#8217;<strong>DOCUMENT<\/strong>&#8216; and exists(select * from dmr_content where any parent_id=dm_document.r_object_id and full_format=&#8217;pdf&#8217;)<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query checks if a rendition is present for the given <strong>DOCUMENT<\/strong> name. If the pdf rendition exists, it returns its r_object_id. If no rendition is present for the given document, it returns nothing.<\/p>\n<h3>3. Audit Trail<\/h3>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Failed Login Since 1h<\/legend>\n<p>select user_name,count(*) as logon_failure from dm_audittrail where event_name=&#8217;dm_logon_failure&#8217; and time_stamp &gt; (date(now)-(<strong>60<\/strong>*1\/24\/60)) group by user_name order by 2<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query displays the number of failed logons in the docbase per user since 60 minutes. The parameter 60 can be changed.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Purge Logon Failure<\/legend>\n<p>EXECUTE purge_audit WITH delete_mode=&#8217;PREDICATE&#8217;, dql_predicate=&#8217;dm_audittrail where event_name=&#8221;dm_logon_failure&#8221;&#8217;<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This statement purges the audit trail queue by deleting all logon failure entries. Be aware that it can take a while depending on the number of entries you have.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Number Of Logon Failure<\/legend>\n<p>select count(*) as logon_failure from dm_audittrail where event_name=&#8217;dm_logon_failure&#8217;<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query simply shows the number of logon failures in the queue.<\/p>\n<h3>4. Miscellaneous<\/h3>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">IAPI Purge Caches<\/legend>\n<p>flush,c,ddcache,dm_type<br \/>\nflush,c,ddcache,dmi_type_info<br \/>\nflush,c,ddcache,dm_aggr_domain<br \/>\nflush,c,ddcache,dm_domain<br \/>\nflush,c,ddcache,dm_dd_info<br \/>\nflush,c,ddcache,dm_nls_dd_info<br \/>\nflush,c,ddcache,dm_foreign_key<br \/>\nflush,c,persistentcache<br \/>\npublish_dd,c<br \/>\nreinit,c<\/fieldset>\n<p>&nbsp;<\/p>\n<p>This query flushes caches, it can be used when trying to install ADTS dars and fails due to version mismatch.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Check ADTS Installer Version<\/legend>\n<p>java -cp adtsWinSuiteSetup.jar DiShowVersion<br \/>\nMulti-installer Suite 6.7.2000.42<br \/>\nInstaller-Version: 6.7.2000.42 build 1<br \/>\nInstaller-Build-Date: <span class=\"Object\"><span class=\"Object\">1\/11\/13 12:28 AM<\/span><\/span><\/fieldset>\n<p>&nbsp;<\/p>\n<p>Go to the ADTS installer directory and issue this query. It shows the version of the installer.<\/p>\n<fieldset style=\"padding: 5px; margin-left: 20px; margin-right: 20px; border: 1px #FF8000 solid; background-color: #e6e6e6; color: #6e6e6e;\">\n<legend style=\"color: #000000;\">Encrypt dm_bof_registry Password<\/legend>\n<p>java com.documentum.fc.tools.RegistryPasswordUtils <strong>PASSWORD<\/strong><\/fieldset>\n<p>&nbsp;<\/p>\n<p>This one encrypts the dm_bof_registry password in order to use it in dfc.properties. Not that the encryption process is different on xPlore and ADTS but you can use it on the content server and all DFC related programs. Replace the PASSWORD in the query by your clear password.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts. 1. xPlore [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[129,232,233,234,235],"type_dbi":[],"class_list":["post-2175","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","tag-documentum","tag-dql","tag-iapi","tag-queries","tag-useful"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Documentum: some useful queries (DQL\/IAPI) - dbi Blog<\/title>\n<meta name=\"description\" content=\"In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum: some useful queries (DQL\/IAPI)\" \/>\n<meta property=\"og:description\" content=\"In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2014-08-07T06:37:00+00:00\" \/>\n<meta name=\"author\" content=\"Middleware Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Middleware Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"Documentum: some useful queries (DQL\/IAPI)\",\"datePublished\":\"2014-08-07T06:37:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\"},\"wordCount\":1212,\"commentCount\":2,\"keywords\":[\"Documentum\",\"DQL\",\"iapi\",\"queries\",\"useful\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\",\"name\":\"Documentum: some useful queries (DQL\/IAPI) - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2014-08-07T06:37:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"description\":\"In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentum: some useful queries (DQL\/IAPI)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Documentum: some useful queries (DQL\/IAPI) - dbi Blog","description":"In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/","og_locale":"en_US","og_type":"article","og_title":"Documentum: some useful queries (DQL\/IAPI)","og_description":"In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/","og_site_name":"dbi Blog","article_published_time":"2014-08-07T06:37:00+00:00","author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"Documentum: some useful queries (DQL\/IAPI)","datePublished":"2014-08-07T06:37:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/"},"wordCount":1212,"commentCount":2,"keywords":["Documentum","DQL","iapi","queries","useful"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/","name":"Documentum: some useful queries (DQL\/IAPI) - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2014-08-07T06:37:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"description":"In this blog post I want to sharing some useful DQL and IAPI queries that I am using all the time. They are more dedicated to Documentum support\/debug and grouped by components. In order to use them, I recommend Qdman: it is the best tool I know to use DQL and IAPI scripts.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-useful-queries-dqliapi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Documentum: some useful queries (DQL\/IAPI)"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/2175","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=2175"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/2175\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=2175"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=2175"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=2175"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=2175"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}