Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Aug 24, 2023 7:00:44 AM
Jul 22, 2019 3:20:58 AM
When exporting and importing an application from one environment (ex: DEV) to another (ex : PROD), only the Public bookmarks are exported.
Scenario:
The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.
Modification to the Qlik Sense Repository database are done at your own risk. Prior to making changes, backup the database in case of a rollback being necessary. Qlik Support will require the system to be restored to the previous state, should an issue occur after modifications were done.
Find and re-import the App's binary file (an App .qvf file without the file extension ".qvf" in its name) stored in the Qlik Sense share. This file will contain all the bookmarks including the Community and Personal bookmarks. However, there will not be any indication of ownership for them and the administrator that re-imported the App will be the new owner of all bookmarks. Once the app is re-published all bookmarks will become Public Bookmarks, so there should be discretion in determining which ones should be published.
For information on finding the binary files see How to find App ID of application in QlikSense Server
Note: The file needs to be renamed to include the .qvf extension prior to importing.
SELECT * FROM public."AppObjects"
where "App_ID"='9abc7e1b-b797-4752-8e83-f6b3c987b1f2'
AND "ObjectType"='bookmark';
UPDATE public."AppObjects"
set "Owner_ID"='<your new ID>'
where "App_ID"='9abc7e1b-b797-4752-8e83-f6b3c987b1f2'
AND "ObjectType"='bookmark';
How to backup / migrate / move / re-import community and personal sheets to Qlik Sense
Restore deleted app in Qlik Sense, Import app in Qlik Sense
Thx Sonja,
You saved a user's day 😉
Thomas