<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CMIS contains query issue in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78662#M24572</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the reply. I will try it out.&lt;/P&gt;&lt;P&gt;Can you explain what tokenized means?&lt;/P&gt;&lt;P&gt;Also does setting tokenised to false makes the search case sensitive?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Feb 2018 16:06:18 GMT</pubDate>
    <dc:creator>udayakumar_p</dc:creator>
    <dc:date>2018-02-20T16:06:18Z</dc:date>
    <item>
      <title>CMIS contains query issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78660#M24570</link>
      <description>Why does, when using contains in CMIS query works as like predicate. For example, consider the following query,Select * from common:basedoctype where CONTAINS('PATH:"//app:company_home/st:sites/cm:digitalcontent/cm:documentLibrary//*"')&amp;nbsp; AND common:keywords&amp;nbsp; ='external_link'.This query returns all c</description>
      <pubDate>Mon, 19 Feb 2018 21:03:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78660#M24570</guid>
      <dc:creator>udayakumar_p</dc:creator>
      <dc:date>2018-02-19T21:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS contains query issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78661#M24571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably it is due that your custom property (common:keywords) is being tokenized when indexing. This is done in the indexation part of the cited property in your content model definition. Maybe with a tokenized=false, and a reindexation of this property is enough. But test it&amp;nbsp;first in a dev env to be sure, cause this may be complicated in a production env with many documents&amp;nbsp;with this property (as it may involve&amp;nbsp;a non incremental change of&amp;nbsp;your content model, reindexation, etc).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;--C.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2018 09:56:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78661#M24571</guid>
      <dc:creator>cesarista</dc:creator>
      <dc:date>2018-02-20T09:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS contains query issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78662#M24572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the reply. I will try it out.&lt;/P&gt;&lt;P&gt;Can you explain what tokenized means?&lt;/P&gt;&lt;P&gt;Also does setting tokenised to false makes the search case sensitive?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2018 16:06:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78662#M24572</guid>
      <dc:creator>udayakumar_p</dc:creator>
      <dc:date>2018-02-20T16:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS contains query issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78663#M24573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Tokenized means that the value for the SOLR index is splitted in parts (usually by blank spaces or undercores), and indexed&amp;nbsp;&lt;SPAN style="color: #58595b; background-color: #ffffff;"&gt;separately (usually both, the full term and their part)&lt;/SPAN&gt;.&amp;nbsp;You have some part of the value in common, so the CMIS query&amp;nbsp;may give both results. The thing is that when using CONTAINS predicate, SOLR does search, and when CONTAINS is not part of the query this query may&amp;nbsp;be solve by the database (depending on your search setup).&lt;/LI&gt;&lt;LI&gt;No, AFAIK, CMIS searches are case sensitive.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://docs.alfresco.com/5.2/references/dev-extension-points-content-model-define-and-deploy.html" title="https://docs.alfresco.com/5.2/references/dev-extension-points-content-model-define-and-deploy.html" rel="nofollow noopener noreferrer"&gt;Content Model - Defining and Deploying | Alfresco Documentation&lt;/A&gt;&amp;nbsp;(look for tokenized)&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://docs.alfresco.com/5.2/concepts/intrans-metadata-query.html" title="https://docs.alfresco.com/5.2/concepts/intrans-metadata-query.html" rel="nofollow noopener noreferrer"&gt;Transactional metadata queries supported by database | Alfresco Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;--C.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2018 17:06:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78663#M24573</guid>
      <dc:creator>cesarista</dc:creator>
      <dc:date>2018-02-20T17:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS contains query issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78664#M24574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a query goes to the database, case sensitivity is defined by the database collation. With SOLR, full text search matches are case insensitive and identifier matches are case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 11:37:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-contains-query-issue/m-p/78664#M24574</guid>
      <dc:creator>andy1</dc:creator>
      <dc:date>2018-02-22T11:37:26Z</dc:date>
    </item>
  </channel>
</rss>

