Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello.
When Teradata is specified as the target endpoint, My understanding is that Qlik Replicate creates log and error tables (with table names ending in *L0, *E1, or *E2 and so on).
Could you please confirm when these tables are generated, and whether they need to be manually deleted?
If manual deletion is required, we assume that the relevant task should be stopped beforehand.
Aside from that, if there are any other precautions or considerations we should be aware of, your guidance would be greatly appreciated.
[Background of the question]
A large number of log and error tables have been created and the customer would like to clean them up as part of system maintenance.
Best Regards.
Hello,
I have an app with two sheets.
One sheet A, user can select three dimension [Area] (Region), [Destination], and [Department] (Departement).
One sheet B with different table where one table is filtered by only one Area (that's the view the final user would like). My dimension [Area] has multiple data but the final user want to see only 4 areas - It means 4 differrent table.
My column [Destination] is filtered too.
I have attached the sheet B in order you can see how I would like the sheet look like at the end.
My problem is when the user is selecting an[AREA] or a [DESTINATION] on sheet A, all my table on sheet B are filtered by the user selection which is Qlik normal way. But that's not what I want !
I've tried to use set analysis on column but with no success.
Please find below the set expression of each column :
[AREA] (Region) : =If(Left(AREA,2)<>'11',Null(),AREA_NAME)
[DESTINATION] : =If(Lower(Destination)<>'bureau' AND Lower(Destination)<>'commerce' AND Lower(Destination)<>'services publics' AND Lower(Destination)<>'industrie' ,Null(),Destination)
[202506-12M] : SUM($(vSLC_12M_AnneeMois))
[202506-12M] : SUM($(vSLC_12M_AnneeMois-Y-1))
Etc...
Hope it's clear ! Not easy to explain in english 😉
Thanks for your help
Hi all,
I know the standard qliksense pivot table able to drag or reorder the dimension position. However, pivot table in visualization bundle have limitation on this.
Is there any way or alternative as my user want the capability to drag the dimension.
Regards,
FT
Hi All,
If QLIK replicate detects a DDL update for its change tables - can we suspend replication of that change table?
Reason for this; from source we use a thirdparty tool which updates the schema / drops tables etc. We do not want to send to target before review of those changes.
Can we suspend those tables / pause replication of the entire task?
Hello
[Background of the Question]
My customer does POC IBM DB2 for iSeries Source.
Customer gets below errors for some tables when he run task. (I am receiving inquiries every time it occurs.)
- converter 836 not found.
- converter 1027 not found.
I understand that those errors occure when Qlik Replicate doesn't have converter correspond to source table's CCSID and that I need to set "Override CCSID to Character Set Mapping" in IBM DB2 for iSeries source endpoint.
I found below post and I already know I can map the CCSID 836 to 935.
https://community.qlik.com/t5/Qlik-Replicate/Cannot-refresh-source-table/td-p/2141999
[Question]
1. What can I map the CCSID 1027 to?
2. I think customer may get similar error for other CCSID yet in future test.
I need ask you everytime?
Is there a way I can find alternative CCSID for any problematic CCSID?
Best Regards
Nakagawa
The source for the logstream task is Oracle. Column is Timestamp(6).
The target for the replication task is SQL Server 2017.
There are 5 columns in the primary key. The timestamp column is part of the primary key. I get the following error when I try to run Full Load.
Cannot insert duplicate key row in object 'dbo.table_name'
The duplicate key value is (pkCol1, pkCol2, pkCol3, pkCol4, 0000-00-00 00:00:00.000000).;
In the source database in Oracle, the timestamp values are:
8/27/2025 5:36:00.275000 AM |
8/27/2025 12:03:00.290000 PM |
So the problem is not from the source. I don't know why the task is changing the timestamp value to 0000-00-00 00:00:00.00000, which fails the primary key.
I even changed the column for the timestamp in Table Settings, Transform to be String(50), which yielded the same result.
This task used to work and I do not know what has changed that would cause this problem. Any ideas?
Hello
source : AS400
When full load, error like following output.(log edit)
[SOURCE_UNLOAD ]E: RetCode: SQL_ERROR SqlState: 07005 NativeError: -227 Message: [IBM][System i Access ODBC Driver][DB2 for i5/OS]SQL0227 - FETCH xxxxxxxxxx. [1022502] (ar_odbc_stmt.c:3435)
[SOURCE_UNLOAD ]E: UNSUCCESSFUL EXECUTION CAUSED BY DEADLOCK OR TIMEOUT error encountered while FETCH-ing data from table 'schema.table' [1020439] (db2i_endpoint_unload.c:490)
[TASK_MANAGER ]W: Table 'schema'.'table' (subtask 1 thread 0) is suspended. RetCode: SQL_ERROR SqlState: 07005 NativeError: -227 Message: [IBM][System i Access ODBC Driver][DB2 for i5/OS]SQL0227 - FETCH xxxxxxxxxxxx.; UNSUCCESSFUL EXECUTION CAUSED BY DEADLOCK OR TIMEOUT error encountered while FETCH-ing data from table 'schema.table' (replicationtask.c:3231)
We would like to execute full load while locked (load data which is before locked ).
Would you tell me how to do ?
Best Regards.
I have this measure/logic placed into a filter table in Qlik sense.
=If(STORE_NUMBER = '0',
If(Match(country, 'NL'), 'EU',
If(Match(country, 'GB'), 'UK',
Region_Country)),
Region_Country)
its supposed to pick up values that are zero in a store number column if they are NL say its the EU and if its GB say UK and to otherwise go along with whatever is already in the region country field.
when I use this filter in the table it doesn't really do anything or interact with the data as I'd expect. it automatically just drops out all of the values that have a store number of 0
anyone know why
Hi all,
New to Talend but I've been around a long time with data and coding.
I need to pull data from a bunch of servers that have a consistent database and table name structure. I've set up a basic tDBConnection->tDBInput->tLogRow->tDBClose prototype that works fine.
Then I've added a tJava at the very beginning to try to get the Connection as an object, with a view to updating the Host in the Connection dynamically. The aim is to change this to some kind of Iterator, once I've proven this can work.
Unfortunately I'm not having any luck getting the Connection in the tJava, which throws this at runtime:
Starting job ConnectionTest at 14:38 28/08/2025.
[statistics] connecting to socket on port 3689
[statistics] connected
Exception in component tJava_1 (ConnectionTest)
java.lang.NullPointerException: Cannot invoke "java.sql.Connection.getMetaData()" because "c" is null
at xxx.connectiontest_0_1.ConnectionTest.tJava_1Process(ConnectionTest.java:552)
at xxx.connectiontest_0_1.ConnectionTest.runJobInTOS(ConnectionTest.java:2397)
at xxx.connectiontest_0_1.ConnectionTest.main(ConnectionTest.java:2035)
[FATAL] 14:38:56 xxx.connectiontest_0_1.ConnectionTest- tJava_1 Cannot invoke "java.sql.Connection.getMetaData()" because "c" is null
java.lang.NullPointerException: Cannot invoke "java.sql.Connection.getMetaData()" because "c" is null
at xxx.connectiontest_0_1.ConnectionTest.tJava_1Process(ConnectionTest.java:552) [classes/:?]
at xxx.connectiontest_0_1.ConnectionTest.runJobInTOS(ConnectionTest.java:2397) [classes/:?]
at xxx.connectiontest_0_1.ConnectionTest.main(ConnectionTest.java:2035) [classes/:?]
[statistics] disconnected
Job ConnectionTest ended at 14:38 28/08/2025. [Exit code = 1]
See attachment for what I have, which is working so long as the tJava is disabled.
Any suggestions would be gratefully received.
Hi,
I have some images used as background in some public sheets, but once publishing the app users with access to the app cannot view the image. Is there any permission I should give to the users that I´m missing? As to the following URL, all users with access to the app can view media library content that is used in public sheets-
Please help
Empower your organization's data with Qlik - start your FREE TRIAL today!
A guide to PowerCenter 10.5 End of Support and Salesforce’s acquisition, with migration strategies and why Qlik Talend is the trusted choice.
Get insider access to the trends, buzz, and bold strategies from leaders transforming data and AI across industries.
Hear from Qlik and AWS experts on minimizing risk in analytics cloud migration, while future-proofing, optimizing TCO, and advancing AI.
Watch expert-led sessions from Qlik Connect 2025 to see how our latest innovations help you integrate and analyze data.
Your journey awaits! Join us by Logging in and let the adventure begin.
Catalyst Cloud developed Fusion, a no-code portal that integrates with existing Qlik licenses to deliver critical insights across the organization. The results? Time savings, transparency, scalability to expand, and increased adoption.
Catalyst Cloud developed Coeus SEP, a Qlik‑based platform for sharing supply chain data with suppliers.
Billion-dollar organization delivers quality service and consistency at scale with Qlik Answers, powered by Amazon Bedrock.
Thomas More University works with the Qlik Academic Program and EpicData to encourage and inspire students.
Qlik Data Integration transforms Airbus' aircraft production, leading to over 150 replication tasks and informing more efficient analysis.
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.
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.