Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
We have QlikSense Enterprise on Windows version May 2025, the PostgreSQL bundle is version 14.
By security policy we need to move the version of PostgreSQL to version 17.
Somebody knows a procedure to do that?
Kind regards,
Gabriel.
As above, recently started in a new environment and been reviewing the DEV/TEST environment as its PostgreSQL host keeps on running into disk space issues.
After reviewing the PostgreSQL install I identified the QLogs DB consuming over 15GB of space and growing.
I can see entry timestamps from today so it's still getting written to.
My previous environment did not use Centralized logging at all so a bit unfamiliar of this however my understanding is QLogs/Central Logging was depreciated in 2021, and more importantly the Service/Executable does not exist in current versions.
So how is QLogs getting updated in this environment?
Is it safe to Drop the QLogs DB in this instance?
If not safe to Drop, what is the correct method to removing Centralized Logging from this environment? Considering we have no use for QLogs anymore.
Thanks
Currently I use a shared login for a dept. Would like to have separate accounts now and then have those users see the shared sheets but not the whole app community.
Is this possible?
Hi everyone,
I'm trying to set up an OIDC connection between Qlik Cloud and Azure AD, but I'm encountering the following error during the validation step:
{ "status": "error", "protocol": "OIDC", "error": "Failed to decrypt ID token", "traceId": "<hidden>" }
Setup details:
Protocol: OIDC
Identity Provider: Azure AD
Redirect URI: https://<tenant>.<region>.qlikcloud.com/login/callback
(this URI is configured both in Azure and in Qlik)
What I've tried so far:
ID token issuance is enabled (enableIdTokenIssuance: true)
Implicit grant flow is enabled
Optional claims are configured: upn, email, groups
A client secret is registered
The app is registered as AzureADMyOrg
I'm not intending to encrypt the ID token, and have not configured any tokenEncryptionKeyId.
Still receiving the "Failed to decrypt ID token" error.
Try to understand :
Why would Qlik try to decrypt the token if no encryption was configured
Could this be caused by missing or misconfigured claims
Has anyone else encountered this ?
Thanks in advance for any suggestions or insights
Eyal
Our Server's User CALs are all occupied. When I tried to release some of them I found that the QMC> System > Licenses > QlikView Server > Client Access Licenses (CALs) > Assign CALs tab returns nothing. It didn't show the User Names as it appears in our other lower QV environments. any suggestions. thanks in advancee.
Hello everyone,
I have watched some presentation videos about the new Write Tables and I would like to clarify a few points.
From what I understand, Write Tables allow updates only on one or more columns associated with an existing record based on a defined key, but they do not allow inserting new records. Is that correct?
For example, if I want to manage a forecast by country, I could define the country as the key and have an editable column with the forecast amount. In this case, if I need to add a new country, is it possible to do it directly in the Write Table, or must the country already exist in the underlying dataset?
Another point that is not completely clear to me is the 90-day retention of the changes. What exactly happens after 90 days?
Continuing with the forecast example, if this table is used to display the forecast throughout the year, would the editable values for rows that have not been modified for 90 days be removed?
I understand that modified data can be extracted before they are deleted, but in a management table like this I cannot clearly see the practical usage. For example, I cannot write the edited value into another non-editable column within the same table.
Thanks in advance for any clarification.
Hi,
We use Fiplana extensions (Write, Edit, etc.) from insightsoftware in Qlik Cloud.
As of today, we are receiving the following error message for all Fiplana visualizations: “Invalid visualization. The visualization failed to load. The extension was not found or caused an error: QS Edit.”
The licenses are still valid, and the latest release has been installed.
Does anyone know what the problem is?
Best regards,
Thomas
The new QSDA Pro 3.5 just dropped, and it gives us the surgical tools to audit the "vitals" of our ecosystem.
1. The App Analysis Score.
A benchmark designed to quantify the quality and health of a Qlik application - it aggregates unused data model weight, error flags, and governance metrics into a single metric. It’s the ultimate way to benchmark your production readiness.
2. Expression Complexity Score.
A composite of several factors: Function Count, Function Nesting Depth, Advanced Function Count and others. It's perfect tool to point at a measure and say: "This isn't just logic; it’s a maintenance liability." If the score is high, you're looking at a performance tax you’ll eventually have to pay - either in CPU cycles or in the hours spent trying to fix it later.
3. Script Reload Log Analysis.
Insights into reload bottlenecks are now baked directly into the collection process. Reload Log Analyzer parses Qlik Sense reload logs to provide a line-level breakdown of script execution time. It transforms flat log files into a visual timeline, allowing developers to pinpoint exact performance bottlenecks within the load script.
Learn more in QSDA Pro Docs - https://help.easyqlik.com/qsdav35/topics/idh-topic1610.htm
Looking for feedback!
#QSDAPro #QlikSense #QlikCloud #QlikAppHealth
The new QSDA Pro 3.5 just dropped, and it gives us the surgical tools to audit the "vitals" of our ecosystem.
1. The App Analysis Score.
A benchmark designed to quantify the quality and health of a Qlik application - it aggregates unused data model weight, error flags, and governance metrics into a single metric. It’s the ultimate way to benchmark your production readiness.
2. Expression Complexity Score.
A composite of several factors: Function Count, Function Nesting Depth, Advanced Function Count and others. It's perfect tool to point at a measure and say: "This isn't just logic; it’s a maintenance liability." If the score is high, you're looking at a performance tax you’ll eventually have to pay - either in CPU cycles or in the hours spent trying to fix it later.
3. Script Reload Log Analysis.
Insights into reload bottlenecks are now baked directly into the collection process. Reload Log Analyzer parses Qlik Sense reload logs to provide a line-level breakdown of script execution time. It transforms flat log files into a visual timeline, allowing developers to pinpoint exact performance bottlenecks within the load script.
Learn more in QSDA Pro Docs - https://help.easyqlik.com/qsdav35/topics/idh-topic1610.htm
Looking for feedback!
#QSDAPro #QlikSense #QlikCloud #QlikAppHealth
Hi all,
I am very new to Qlik and still learning Qlik expressions and Set Analysis. I am stuck on a seemingly a very simple task and it appears that ChatGPT has also given up and I cannot find any answers anywhere that can help me with this issue.
So my requirements are pretty simple: A Straight table with the following columns:
Column 1: [MMM YYYY] = Date formatted as [MMM YYYY]
Column 2: [Sales] = Sales for each [MMM YYYY] for the select period
Column 3: [Sale LY] = Sales from the Previous Year, Same month as [MMM YYYY]
In Power BI it will take me less than 2 minutes to do this, by just simply using SAMEPERIODLASTYEAR() function. But Qlik is having none of it and I have tried almost 50 different solutions trying to achieve this.
So I have a FactSales table and a MasterDateCalendar table.
My Sales Expression looks pretty simple:
=Sum([SalesAmount])
For Sales LY I have tried a number of things:
=Sum(
{$<
[SalesDate] =,
Month =,
Year =,
MMYYYY =,
MMMYear =,
YYYYMM =,
YYYYMM = {"=$(=Only(YYYYMM)-100)"}>}
[SalesAmount]
)
Another thing I have tried:
=Sum(
{$<
[SalesDate] =,
Month =,
Year =,
MMYYYY =,
MMMYear =,
YYYYMM =,
[SalesDate] = {">=$(=Num(AddYears(Only([FirstDateofMonth]), -1)))<=$(=Num(AddYears(Only([LastDateofMonth]), -1)))"}>}
[SalesAmount]
)
[FirstDateofMonth] and [LastDateofMonth] are columns from my MasterDateCalendar table.
All of the above show Zeros for Sales LY.
I am absolutely gobsmacked by the fact that such a simple thing in a BI tool could be this difficult to achieve.
Ideally, I would want a straight table with output as shown in the attached image.
Any help or pointers in the right direction will be much appreciated.
Thanks in advance.
FREE TRIAL
Data has stories to tell—let Qlik help you hear them. Start your FREE TRIAL today!
Dare to unleash a new professional you in 2026. Join Connect April 13–15 and supercharge your skill sets.
See why Qlik was named a Leader in the 2025 Gartner® Magic Quadrant™ for Data Integration Tool.
Trends 2026 Alert! Plug into this rewired framework for driving ROI from AI.
Learn why legacy data platforms can’t meet today’s AI and analytics demands and how Qlik provides a modern, independent, future-ready alternative.
Solve the real-world need for real-time data with Change Data Capture (CDC). What is CDC and how to master it?
Your journey awaits! Join us by Logging in and let the adventure begin.
Afcons Infrastructure partnered with Qlik to unify its data and build dynamic dashboards, reducing review times from weeks to hours and enabling on-demand reporting across its global operations.
By implementing Qlik Analytics, Atria Convergence Technologies improves insight into churn, revenue, and downtime, driving faster decisions and more proactive customer support.
Hydronorth uses Qlik to replace disconnected data systems with a single source of truth, improving alignment, speeding up decisions, and reducing manual work.
With Qlik Cloud Analytics, Rexel boosts performance by enabling self-service analysis, reducing prep time, and giving 3,000 users access to trusted insights.
Join one of our Location and Language groups. Find one that suits you today!
Únete a la conversación con usuarios de Qlik en todo México: comparte ideas, haz preguntas y conéctate en español.
Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。
Connectez-vous avec des utilisateurs francophones de Qlik pour collaborer, poser des questions et partager des idées.
The Qlik Product Recap showcases the newest features with quick demos and shareable resources to help you stay current?
You can test-drive Qlik for free? Try Qlik Talend Cloud to integrate and clean data without code, or explore Qlik Cloud Analytics to create AI-powered visualizations and uncover insights hands-on.
Salesforce’s acquisition of Informatica could put your flexibility on hold? Qlik makes it easy to keep your data initiatives moving forward.
You can move beyond batch processing and harness real-time data to power AI and faster decisions? Discover how in our new eBook, Mastering Change Data Capture.