我目前正在尝试从 Jive 5.0 数据库中导出个人资料图像。我有提取图像的 postgre 查询。但是我很难确定哪个图像是该配置文件当前选择的图像。
select *
from jiveuser u
LEFT JOIN jiveusercontainer c ON u.userid = c.userid
LEFT JOIN jivecontent ct ON ct.containerid = c.usercontainerid
left join jiveattachment ja on ja.objectid = ct.contentid
WHERE ct.contenttype = 501 and
ja.objecttype = 501 and
u.userid in (4794) and
filename = 'profile_image_500.png'
order by ja.modificationdate desc
有谁知道这些信息存储在 Jive 数据库的哪个位置?