Type postgres command \dt in powershell prompt QSR=> and press enter to know the table names in current user
\dt *.* will list all tables in postgres database across all schemas
\d "<tablename>" will provide the metadata of the table
Related to Users
SELECT * from "Users";-----To know all the users
UPDATE "Users" SET "RolesString"='RootAdmin' where "Name"='<value>';-----To update the role of an user
Related to SSL Thumbprint
SELECT "SslBrowserCertificateThumbprint" from "ProxyServiceSettings";
UPDATE "ProxyServiceSettings" SET "SslBrowserCertificateThumbprint"='<value>';----To update the thumbprint value
Related to License
SELECT "Lef","Serial","Name","Organization" from "Licenses";
UPDATE "Licenses" SET "Lef"='<value>', "Serial"='<SerialNumber>', "Name"='<value>', "Organization"='<value>';
Related to HostAllowList
SELECT "WebsocketCrossOriginWhiteListString" from "VirtualProxyConfigs";
UPDATE "VirtualProxyConfigs" SET "WebsocketCrossOriginWhiteListString"='<value>';---to whitelist the domains/ips
Restart all Qlik Sense Services
The information in this article is provided as-is and will be used at your discretion. Depending on the tool(s) used, customization(s), and/or other factors, ongoing support on the solution below may not be provided by Qlik Support.