Hi,
I need an SQL query that we can run in our confluence to get a list of users who view each pages (with the date they last viewed the page). Thanks
Something like:
Hi @Jacynthe_Thibault
Can you try in your staging instance
SELECTcwd_user.user_name AS username, content.title AS page_title, content.creationdate AS page_creation_date, content.lastmoddate AS page_last_modified_date, page_view.date AS view_dateFROM content JOIN page_view ON content.contentid = page_view.contentid JOIN cwd_user ON page_view.username = cwd_user.user_nameWHERE content.contenttype = 'PAGE'ORDER BY cwd_user.user_name, page_view.date;
@Clark Everson Thanks We tried it but the page_view was not find as table or view, it seems that it is not in the DB
It looks like you're new here. Sign in or register to get started.