<?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: Relation between Document and Database in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135033#M36311</link>
    <description>&lt;P&gt;Thank you Sufo!&lt;/P&gt;&lt;P&gt;It is realy helpful and good query!&lt;/P&gt;&lt;P&gt;But I tried to convert the below query for Mysql as we using MySql database.&lt;/P&gt;&lt;P&gt;Getting lots of Syntax error and I tried to convert but still getting the error specially for the Functions&lt;/P&gt;&lt;P&gt;Any help for Mysql will be thankful &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;</description>
    <pubDate>Fri, 09 Apr 2021 13:15:19 GMT</pubDate>
    <dc:creator>shashi</dc:creator>
    <dc:date>2021-04-09T13:15:19Z</dc:date>
    <item>
      <title>Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135027#M36305</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We want to export all documents from /contentstore and metadata from&amp;nbsp;alf_content_url table.&lt;/P&gt;&lt;P&gt;As the table table (alf_content_url) stores only path of the files with *.bin format(eg- store://2021/1/29/12/31/17dfa825-fe2f-4cc1-90c0-f6b3b287445a.bin)&lt;/P&gt;&lt;P&gt;We can see also files and folder from Alfressco UI under Company Home.&lt;/P&gt;&lt;P&gt;So, where to find folder and file relations like which files belongs to which folder in table ot confiuration file?&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 14:10:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135027#M36305</guid>
      <dc:creator>shashi</dc:creator>
      <dc:date>2021-04-03T14:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135028#M36306</link>
      <description>&lt;P&gt;EDIT: added correct name for the document from ALF_NODE_PROPERTIES table.&lt;/P&gt;&lt;P&gt;You've asked for it &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;PRE&gt;select &lt;FONT color="#FF0000"&gt;&lt;STRIKE&gt;a.child_node_name&lt;/STRIKE&gt;&lt;/FONT&gt; &lt;FONT color="#0000FF"&gt;p2.string_value&lt;/FONT&gt; as content_name, p1.string_value as parent_name, u.content_url 
    from 
        alf_content_url u left join alf_content_data d on u.id=d.content_url_id 
        left join alf_node_properties p on d.id=p.long_value 
        left join alf_child_assoc a on a.child_node_id=p.node_id 
        left join alf_node_properties p1 on a.parent_node_id=p1.node_id &lt;BR /&gt;        &lt;FONT color="#0000FF"&gt;left join alf_node_properties p2 on a.child_node_id=p2.node_id&lt;/FONT&gt;
    where 
        p.qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='content' and n.uri='http://www.alfresco.org/model/content/1.0'
        ) 
        and  
        p1.qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
        )&lt;BR /&gt;        &lt;FONT color="#0000FF"&gt;and&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;        p2.qname_id=( &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;            where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0' &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;        )&lt;/FONT&gt;;&lt;/PRE&gt;&lt;P&gt;But you will get also thumbnails, so you have to filter the results further.&lt;/P&gt;&lt;P&gt;Document metadata is stored in ALF_NODE_PROPERTIES table. That table also contains NODE_ID, which is used in ALF_CHILD_ASSOC table that contains parent-child relations. ALF_NODE_PROPERTIES contains ID of ALF_CONTENT_DATA row and that contains CONTENT_URL_ID and that is ID in ALF_CONTENT_URL table.&lt;/P&gt;&lt;P&gt;This is only for the ideal scenario. If you have multifiling (one document in more folders), other associations defined or more content properties (custom model), things can get far more complicated.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 23:05:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135028#M36306</guid>
      <dc:creator>sufo</dc:creator>
      <dc:date>2021-04-03T23:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135029#M36307</link>
      <description>&lt;P&gt;Hi Sufo,&lt;/P&gt;&lt;P&gt;Thanks a lot for your answer. indeed a good answer that clear my questions.&lt;/P&gt;&lt;P&gt;One more questions.&amp;nbsp; to get complete folder and subfolder details for a file(Like - a test.doc file stored inside src/main/test folder in tree structure format)&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 10:36:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135029#M36307</guid>
      <dc:creator>shashi</dc:creator>
      <dc:date>2021-04-05T10:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135030#M36308</link>
      <description>&lt;P&gt;I don't know why you are doing this. It seems like you are making your life complicated for no good reason.&lt;/P&gt;
&lt;P&gt;There is a perfectly good API that shields you from the database and file system details.&lt;/P&gt;
&lt;P&gt;If you want to export files and metadata, use the API and stop looking at the database and the file system.&lt;/P&gt;
&lt;P&gt;Maybe you have a good reason for avoiding the API, and, if so, best of luck to you.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 16:16:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135030#M36308</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2021-04-06T16:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135031#M36309</link>
      <description>&lt;P&gt;I love to learn new things so now I know how to do recursive selects in the DB (to build path using ALF_CHILD_ASSOC table) &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;This SQL code works on Oracle DB and filters out thumbnails and older versions of content (takes into account only workspace://SpacesStore):&lt;/P&gt;&lt;PRE&gt;create or replace function get_path (document_node_id in number) return varchar2 as
    document_path varchar2(32767);
begin
    with pth(parent_node_id, child_node_id, parent_name) as (
        select a.parent_node_id as parent_node_id, a.child_node_id as child_node_id, p1.string_value as parent_name from
            alf_child_assoc a left join alf_node_properties p1 on a.parent_node_id=p1.node_id 
        where 
            p1.qname_id=(
                select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
                where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
            )
            and
            a.child_node_id=document_node_id
        union all
        select a1.parent_node_id, a1.child_node_id, p2.string_value from 
            pth left join alf_child_assoc a1 on pth.parent_node_id=a1.child_node_id left join alf_node_properties p2 on a1.parent_node_id=p2.node_id
        where
            p2.qname_id=(
                select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
                where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
            )
    ) select listagg(parent_name, '/') within group(order by parent_node_id) into document_path from pth;
    return document_path;
end get_path;

select get_path(a.child_node_id) as content_path, p2.string_value as content_name, u.content_url 
    from 
        alf_content_url u left join alf_content_data d on u.id=d.content_url_id 
        left join alf_node_properties p on d.id=p.long_value 
        left join alf_child_assoc a on a.child_node_id=p.node_id 
        left join alf_node_properties p1 on a.parent_node_id=p1.node_id 
        left join alf_node_properties p2 on a.child_node_id=p2.node_id
        left join alf_node n on a.child_node_id=n.id
    where 
        n.store_id=(
            select id from alf_store where protocol='workspace' and identifier='SpacesStore'
        )
        and not
        n.type_qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='thumbnail' and n.uri='http://www.alfresco.org/model/content/1.0'
        )
        and
        p.qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='content' and n.uri='http://www.alfresco.org/model/content/1.0'
        ) 
        and  
        p1.qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
        )
        and
        p2.qname_id=( 
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0' 
        );&lt;/PRE&gt;&lt;P&gt;PostgreSQL version:&lt;/P&gt;&lt;PRE&gt;create or replace function get_path(document_node_id in bigint) returns text as $$
declare document_path text;
begin
    with recursive pth(parent_node_id, child_node_id, parent_name) as (
        select a.parent_node_id as parent_node_id, a.child_node_id as child_node_id, p1.string_value as parent_name from
            alf_child_assoc a left join alf_node_properties p1 on a.parent_node_id=p1.node_id 
        where 
            p1.qname_id=(
                select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
                where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
            )
            and
            a.child_node_id=document_node_id
        union all
        select a1.parent_node_id, a1.child_node_id, p2.string_value from 
            pth left join alf_child_assoc a1 on pth.parent_node_id=a1.child_node_id left join alf_node_properties p2 on a1.parent_node_id=p2.node_id
        where
            p2.qname_id=(
                select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
                where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
            )
    ) select string_agg(parent_name, '/' order by parent_node_id) into document_path from pth;
	return document_path;
end
$$ language plpgsql;

select get_path(a.child_node_id) as document_path, p2.string_value as content_name, u.content_url 
    from 
        alf_content_url u left join alf_content_data d on u.id=d.content_url_id 
        left join alf_node_properties p on d.id=p.long_value 
        left join alf_child_assoc a on a.child_node_id=p.node_id 
        left join alf_node_properties p1 on a.parent_node_id=p1.node_id 
        left join alf_node_properties p2 on a.child_node_id=p2.node_id
        left join alf_node n on a.child_node_id=n.id
    where 
        n.store_id=(
            select id from alf_store where protocol='workspace' and identifier='SpacesStore'
        )
        and not
        n.type_qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='thumbnail' and n.uri='http://www.alfresco.org/model/content/1.0'
        )
        and
        p.qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='content' and n.uri='http://www.alfresco.org/model/content/1.0'
        ) 
        and  
        p1.qname_id=(
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
        )
        and
        p2.qname_id=( 
            select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
            where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0' 
        );&lt;/PRE&gt;</description>
      <pubDate>Tue, 06 Apr 2021 22:43:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135031#M36309</guid>
      <dc:creator>sufo</dc:creator>
      <dc:date>2021-04-06T22:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135032#M36310</link>
      <description>&lt;P&gt;Thanks Jpotts,&lt;/P&gt;&lt;P&gt;are you talking from CMIS API?&lt;/P&gt;&lt;P&gt;Already we have implemented in our applications.&lt;/P&gt;&lt;P&gt;Actually things is we have plan to migrate our current application to new system. and we need only data from Alfresco.&lt;/P&gt;&lt;P&gt;for that Physical data we can get from filesystem that will be in &lt;STRONG&gt;*.bin&lt;/STRONG&gt; format and now we want metadata to know which file stored in filesystem belongs to which folder and subfolder(mean parent/child folder/file.docx).&lt;/P&gt;&lt;P&gt;is there any REST api where we can get all meta data info in json or xml format?&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;Kind regards!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 13:09:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135032#M36310</guid>
      <dc:creator>shashi</dc:creator>
      <dc:date>2021-04-09T13:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135033#M36311</link>
      <description>&lt;P&gt;Thank you Sufo!&lt;/P&gt;&lt;P&gt;It is realy helpful and good query!&lt;/P&gt;&lt;P&gt;But I tried to convert the below query for Mysql as we using MySql database.&lt;/P&gt;&lt;P&gt;Getting lots of Syntax error and I tried to convert but still getting the error specially for the Functions&lt;/P&gt;&lt;P&gt;Any help for Mysql will be thankful &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 13:15:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135033#M36311</guid>
      <dc:creator>shashi</dc:creator>
      <dc:date>2021-04-09T13:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135034#M36312</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/51873"&gt;@shashi&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is an API - the &lt;A href="https://api-explorer.alfresco.com/api-explorer/#/nodes" target="_self" rel="nofollow noopener noreferrer"&gt;nodes api&lt;/A&gt; might be what you are looking for.&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;</description>
      <pubDate>Mon, 12 Apr 2021 10:01:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135034#M36312</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2021-04-12T10:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135035#M36313</link>
      <description>&lt;P&gt;Thank You EddieMay,&lt;/P&gt;&lt;P&gt;I checked the API link it says that it will work with Alfresco 5.2. but In our applications we have used Alfresco 4.2.e&lt;/P&gt;&lt;P&gt;and we are using CMIS inteface to connect with Java applications not the REST api.&lt;/P&gt;&lt;P&gt;Any way thank you very much. and feeling hounor to get response from Alfresco Admin &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Shashi&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 07:19:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135035#M36313</guid>
      <dc:creator>shashi</dc:creator>
      <dc:date>2021-04-13T07:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135036#M36314</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/51873"&gt;@shashi&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ah, yes 4.2.e! I'd recommend that you label the version of your alfresco when asking questions.&lt;/P&gt;
&lt;P&gt;This &lt;A href="https://blog.dbi-services.com/alfresco-some-useful-database-queries/" target="_self" rel="nofollow noopener noreferrer"&gt;blog post on Alfresco database queries&lt;/A&gt; refers to 4.2.c - there might be something there that is useful? Also, might there be an export extension - &lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-forum/import-and-export/td-p/209579" target="_self" rel="nofollow noopener noreferrer"&gt;here are some&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 12:45:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135036#M36314</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2021-04-13T12:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135037#M36315</link>
      <description>&lt;P&gt;Thank you very much EddieMay!&lt;/P&gt;&lt;P&gt;Its realy a good link. I will work based on info provided. I hope I will get my outcomes!&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 15:40:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135037#M36315</guid>
      <dc:creator>shashi</dc:creator>
      <dc:date>2021-04-13T15:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Relation between Document and Database</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135038#M36316</link>
      <description>&lt;P&gt;Shashi, seems that you have MySQL 5.7 or even older version. This should work:&lt;/P&gt;&lt;PRE&gt;drop procedure if exists get_path;
delimiter $$
create procedure get_path(in document_node_id bigint(20), out path text)
begin
    declare parent_name varchar(255);
    declare temppath text;
    declare tempparent bigint(20);
    declare continue handler for not found 
    begin
        set tempparent = null;
        set parent_name = '';
	end;
    set max_sp_recursion_depth = 255;
    select a.parent_node_id, p1.string_value from
            alf_child_assoc a left join alf_node_properties p1 on a.parent_node_id=p1.node_id 
        where 
            p1.qname_id=(
                select q.id from alf_qname q left join alf_namespace n on (q.ns_id=n.id) 
                where q.local_name='name' and n.uri='http://www.alfresco.org/model/content/1.0'
            )
            and
            a.child_node_id=document_node_id 
    into tempparent, parent_name;
    if tempparent is null
    then
        set path = parent_name;
    else
        call get_path(tempparent, temppath);
        set path = concat(temppath, '/', parent_name);
    end if;
end$$
delimiter ;

drop function if exists get_path;
delimiter $$
create function get_path(child_node_id int) returns text deterministic
begin
    declare res text;
    call get_path(child_node_id, res);
    return res;
end$$
delimiter ;&lt;/PRE&gt;&lt;P&gt;Original idea is from here:&amp;nbsp;&lt;A href="https://stackoverflow.com/a/42734226/14914433&amp;nbsp;" target="_blank" rel="nofollow noopener noreferrer"&gt;https://stackoverflow.com/a/42734226/14914433&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 20:48:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/relation-between-document-and-database/m-p/135038#M36316</guid>
      <dc:creator>sufo</dc:creator>
      <dc:date>2021-04-13T20:48:40Z</dc:date>
    </item>
  </channel>
</rss>

