Hello, could anyone direct me to the table which shows page view activity? DBO.CONTENT shows created, modified, and other user data, but I would like to pull page views.
Note: Global activity is enabled and I can see the top space page views and edits... so the data has to be captured somewhere...
Cheers!
@Srinatha Tondihal I've installed that app in our DEV environment but the app's view counter only starts when the app is installed/enabled; I need to see the view count over the lifetime of the target page.
Is there no way to get the page view count from SQL? Even if the SQL for 'top 10 'most popular content (views)' (under space activity) could be supplied, I could simplify the query from there to a unique page.
Thanks,
Jonathan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jonathan Smith ,
The below query will give you the page name and when it was last viewed. I just quickly tested and seems to be working fine.
SELECT c.title, rv."LAST_VIEW_DATE"
FROM "AO_92296B_AORECENTLY_VIEWED" rv, content c
WHERE rv."SPACE_KEY" = <spaceKey> AND rv."CONTENT_ID" = c.contentid ORDER BY rv."LAST_VIEW_DATE" DESC
I hope above info will help. Have a good day!
Thanks,
Srinath T
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jonathan Smith ,
Welcome to Atlassian community.
So basically you want to know when the page was last viewed right? I think you can get that result by joining "AO_92296B_AORECENTLY_VIEWED" and content table.
I will let you know if i had any success in getting the details for you.
Thanks,
Srinath T
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Srinatha Tondihal I want to know how many times a page was viewed. Space activity shows the top 10 'most popular content (views)', but I want to be able to do this for any page.
Sorry, I didn't make that super clear in my question.
Thanks,
Jon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.