<?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: where are stored the values of a property ? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71634#M46410</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've managed to get the object in mySQL by matching the db_id from the node browser. The problem is that the values are stored as serializable ArrayList. I need to perform a query like this :&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;SELECT COUNT(tag) AS tagCount, tag&lt;BR /&gt;FROM tblblogtags&lt;BR /&gt;GROUP BY tag&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;that's why I needed raw access to these values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the best way to process these values ? Of course I could use the jcr but I would to iterate over all lists and this would have performance issues. The sql select/count/group by is more efficient. Would that be a bad idea to create a separate table for these values in order to perform my query on them ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your answer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Feb 2007 10:07:28 GMT</pubDate>
    <dc:creator>aznk</dc:creator>
    <dc:date>2007-02-02T10:07:28Z</dc:date>
    <item>
      <title>where are stored the values of a property ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71632#M46408</link>
      <description>Hi,I know that nodes are stored in a database (mysql in my case), but I couldn't find where the property values are stored, even by browsing the database tables, node browser or alf_data directories. All I could find was only node ID (such as 083afe5c-b069-11db-88a1-cfe3e3c891f3), even in the table</description>
      <pubDate>Wed, 31 Jan 2007 16:18:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71632#M46408</guid>
      <dc:creator>aznk</dc:creator>
      <dc:date>2007-01-31T16:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: where are stored the values of a property ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71633#M46409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was that we could configure properties as follows :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;index enabled="true"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;atomic&amp;gt;true&amp;lt;/atomic&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;stored&amp;gt;false&amp;lt;/stored&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tokenised&amp;gt;true&amp;lt;/tokenised&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/index&amp;gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;and that the "stored" tag means "If true, the property value is stored in the index and may be obtained via the lucene low level query API." according to the wiki : &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Full-Text_Search_Configuration" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Full-Text_Search_Configuration&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;but what is "lucene low level query API" ? Is it the xpath Nodeservice ? Does it mean that in a way or another (database/node browser/api/query), we could see/access the actual property value ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 10:02:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71633#M46409</guid>
      <dc:creator>aznk</dc:creator>
      <dc:date>2007-02-01T10:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: where are stored the values of a property ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71634#M46410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've managed to get the object in mySQL by matching the db_id from the node browser. The problem is that the values are stored as serializable ArrayList. I need to perform a query like this :&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;SELECT COUNT(tag) AS tagCount, tag&lt;BR /&gt;FROM tblblogtags&lt;BR /&gt;GROUP BY tag&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;that's why I needed raw access to these values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the best way to process these values ? Of course I could use the jcr but I would to iterate over all lists and this would have performance issues. The sql select/count/group by is more efficient. Would that be a bad idea to create a separate table for these values in order to perform my query on them ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your answer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 10:07:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/where-are-stored-the-values-of-a-property/m-p/71634#M46410</guid>
      <dc:creator>aznk</dc:creator>
      <dc:date>2007-02-02T10:07:28Z</dc:date>
    </item>
  </channel>
</rss>

