Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
JacobJones
Creator
Creator

Bookmarks in QMC

Hello,

I will be replacing some apps and some of the field names have changed. I believe this will make some of the current bookmarks unavailable. 

In QMC, can I see which users have bookmarks where? I want to notify them that there might be an issue.

 

Best,

Jacob

1 Solution

Accepted Solutions
bhaskar_sm
Partner - Creator III
Partner - Creator III

Hi,

In Qliksense Bookmark is store in Reposetry database Table "AppObjects".

You need to connect to your Qliksense Pgdatabase though PGadmin tool.

below SQL query to fetch all the Bookmarks, modifyeduserid along with the AppId.

SELECT "ID", "ObjectType","Name","ModifiedByUserName","App_ID","Owner_ID"
FROM public."AppObjects" where "ObjectType"='bookmark';
;

Sav.JPG

 

View solution in original post

4 Replies
bhaskar_sm
Partner - Creator III
Partner - Creator III

Hi,

In Qliksense Bookmark is store in Reposetry database Table "AppObjects".

You need to connect to your Qliksense Pgdatabase though PGadmin tool.

below SQL query to fetch all the Bookmarks, modifyeduserid along with the AppId.

SELECT "ID", "ObjectType","Name","ModifiedByUserName","App_ID","Owner_ID"
FROM public."AppObjects" where "ObjectType"='bookmark';
;

Sav.JPG

 

JacobJones
Creator
Creator
Author

Thank you for taking the time to show me this. It works great.

 

bc5891
Contributor III
Contributor III

Hi there, this post looks really like something I wish to produce.

"You need to connect to your Qliksense Pgdatabase though PGadmin tool " 

Can you give further guidance on this part please?

Thanks

 

BiancaWou
Contributor
Contributor

Hi, could you give me some more information on how to get to the page you are referring to in your proposed solution?

Thanks,