Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 216,892 members
  • 9,827 online
  • 1,994,248 posts
  • 149,432 Solutions
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW

Welcome to Qlik Community

Recent Discussions

  • forum

    Qlik Cloud Data Integration

    Integrate qlikview with angular

    Hello, how can i integrate qlikview app with angular ?
  • forum

    New to Qlik Analytics

    Remove null concatenation in pivot table

    Hi, I am new to qlik,I have a pivot table with the dimensions group and subgroup.the group field is a concatenation of group number and the group name... Show More

    Hi, I am new to qlik,
    I have a pivot table with the dimensions group and subgroup.
    the group field is a concatenation of group number and the group name (Num_Group & '- '& Group) and the Subgroup field has the same logic
    ( (Num_Subgroup & '- '& Subgroup)).
    The problem is that I get a null concatenation in the filter panel.
    in my dimension I was putting this expression: if(isnull(Group_concat or Group_concat='-'), Group_concat), but it still doesn't remove the null concatenation from the filter...
    Can you help me, please.

     

    azucna122_0-1713263074424.png

     

    Show Less
  • forum

    Deployment

    Snowflake java.io.IOException: Error processing query

    Hi all, I am currently encountering an issue when I run a Talend Job that read a query from Snowflake which is able to run in my local PC Talend but n... Show More

    Hi all, I am currently encountering an issue when I run a Talend Job that read a query from Snowflake which is able to run in my local PC Talend but not in a Remote Engine that I have connected in Talend Portal. Here is the log:

    tDBInput_1 Error processing query: SELECT TO_VARCHAR(MAX(DATE_VALID),'yyyyMMdd') FROM CURRENCY_EXCHANGE;
    java.io.IOException: Error processing query: SELECT TO_VARCHAR(MAX(DATE_VALID),'yyyyMMdd') FROM CURRENCY_EXCHANGE;
        at org.talend.components.snowflake.runtime.SnowflakeReader.start(SnowflakeReader.java:138)
        at org.talend.codegen.flowvariables.runtime.FlowVariablesReader.start(FlowVariablesReader.java:73)
        at fpi_dw.tcurr_0_1.TCURR.tDBInput_1Process(TCURR.java:3704)
        at fpi_dw.tcurr_0_1.TCURR.tDBRow_1Process(TCURR.java:2622)
        at fpi_dw.tcurr_0_1.TCURR.runJobInTOS(TCURR.java:7710)
        at fpi_dw.tcurr_0_1.TCURR.main(TCURR.java:7142)
    Caused by: net.snowflake.client.jdbc.SnowflakeSQLException: JDBC driver internal error: exception creating result java.lang.ExceptionInInitializerError at net.snowflake.client.jdbc.internal.apache.arrow.memory.UnsafeAllocationManager.<clinit>(UnsafeAllocationManager.java:27).
        at net.snowflake.client.jdbc.SnowflakeStatementV1.executeQueryInternal(SnowflakeStatementV1.java:243)
        at net.snowflake.client.jdbc.SnowflakeStatementV1.executeQuery(SnowflakeStatementV1.java:131)
        at org.talend.components.snowflake.runtime.SnowflakeReader.start(SnowflakeReader.java:135)
        ... 5 more

     

    From my PC, works perfectly:

    kenczq_0-1713262485742.png

    Talend Portal:

    kenczq_1-1713262524694.png

     

    Appreciate with any advice and feedback, thank you!

    Show Less
  • forum

    New to Qlik Analytics

    Times

    Hi, what do i miss here??if(frac(STARTTIME)>=MakeTime(6,45) and frac(STARTTIME)<=MakeTime(15,29,59),'FM',if(frac(STARTTIME)>=MakeTime(15,30) and frac(... Show More

    Hi, what do i miss here??

    if(frac(STARTTIME)>=MakeTime(6,45) and frac(STARTTIME)<=MakeTime(15,29,59),'FM',
    if(frac(STARTTIME)>=MakeTime(15,30) and frac(STARTTIME)<=MakeTime(22,59,59),'EM','Natt')) as Shift

    JohnSSI_0-1713197425254.png

    JohnSSI_1-1713197531018.pngJohnSSI_2-1713197626578.png

     

     

    Show Less
  • forum

    New to Qlik Analytics

    How to concatenate 2 tables

    Hi, I try to concatenate these 2 tables and the fields from the budget one (.xlsx) results in nulls as you can see in the image attatched, where I kno... Show More

    Hi,

    I try to concatenate these 2 tables and the fields from the budget one (.xlsx) results in nulls as you can see in the image attatched, where I know there are values. Is there something wrong? 

    Many thanks!!!

    This is the code: 

    LIB CONNECT TO 'Amazon_Redshift_redshift-dwh.cwafb1bxivm3.eu-west-1.redshift.amazonaws.com';
    budget:
    LOAD
        "Código del evento" as event_code,
        event_end_time as budget_event_end_time,
        timestamp(FECHA) AS budget_date,
        "NUMERO DE TICKETS" as budget_quantity,
        PRECIO as budget_price,
        "BOOKING FEE" as budget_fee,
        "GROSS REVENUE" as budget_gross_revenue,
        round(num(Interval(event_end_time - timestamp(FECHA), 'DD'))/7,2) AS weeks_left_to_event
    FROM [lib://DataFiles/Ticketing 2024.xlsx]
    (ooxml, embedded labels, table is [Hoja 3]);
     
    concatenate (budget)
     
    LOAD "event_id",
        "event_name",
        "event_country",
        "event_date",
        capacity,
        "event_code",
        "ticket_id",
        "cashless_paid_credits",
        quantity,
        "ticket_type",
        "sold_date",
        "ticket_date",
        "ticket_category",
        status,
        "event_currency",
        "gbp_rate",
        "eur_rate",
        "base_amount",
        "fee_amount",
        "total_amount",
        email,
        "customer_country",
        city,
        age,
        gender,
        "age_group",
        "year_event",
        "month_event",
        "days_left_to_event",
        "weeks_left_to_event",
        "months_left_to_event",
        babb,
        "previous_event_code",
        "event_end_time",
        "event_to_compare",
        "previous_day_sales",
        "marketing_total_spend",
        cpa;
        
     
    SELECT 
     
    "event_id",
    "event_name",
    "event_country",
    "event_date",
    capacity,
    "event_code",
    "ticket_id",
    "cashless_paid_credits",
    quantity,
    "ticket_type",
    "sold_date",
    "ticket_date",
    "ticket_category",
    status,
    "event_currency",
    "gbp_rate",
    "eur_rate",
    "base_amount",
    "fee_amount",
    "total_amount",
    email,
    "customer_country",
    city,
    age,
    gender,
    "age_group",
    "year_event",
    "month_event",
    "days_left_to_event",
    "weeks_left_to_event",
    "months_left_to_event",
    babb,
    "previous_event_code",
    "event_end_time",
    "event_to_compare",
    "previous_day_sales",
    "marketing_total_spend",
    cpa
    FROM "dbt_xavi_marts"."marts_event_ticketing";
     
     
     
    Show Less
  • forum

    Installing and Upgrading

    How To Fix D-Link Extender 5GHz Not Working?

    The D-Link 5GHz Not Showing if your device does not support the 5GHZ network. Also, check and update the SSID names for both networks and sometimes it... Show More

    The D-Link 5GHz Not Showing if your device does not support the 5GHZ network. Also, check and update the SSID names for both networks and sometimes it can happen due to a corrupted network adaptor. So to resolve it, give a different name to the 5ghz network and fix the adaptor issues.

    Show Less
  • forum

    New to Qlik Analytics

    Sum(Value) for last 12 months having only YearMonth

    Hello, What is the best formula to add the values of the last 12 months having only Year and Month in the yyyymm format? Thanks for helping  
  • forum

    App Development

    VBScript

    Hello,   I can create a Module with VB Script, whre can I find a descriptio: how to write a VB Script.   tanks in advance   Frédéric
  • forum

    Qlik Replicate

    Full load only Db2 for z/os -> POstgres without CDC

    Hello   we want to transfer data from db2 for z/os -> Postgres once a time with a FULL LOAD task for  a group of tables. Is it possible to perform thi... Show More

    Hello

     

    we want to transfer data from db2 for z/os -> Postgres once a time with a FULL LOAD task for  a group of tables.

    Is it possible to perform this without enabling CHANGE DATA CAPTURE on that group of tables ?

    Thanks

    AF

    Show Less
  • forum

    New to Qlik Analytics

    Qlik error finding column in database

    Hi All, I am trying to get some data out of an database. However, the load script does give an error in Qlik. When I run the SQL statement in the data... Show More

    Hi All,

    I am trying to get some data out of an database. However, the load script does give an error in Qlik. When I run the SQL statement in the database, there occurs no error.

    See below the error and the SQL statement.

    jvdb_0-1713184897243.png

    Select
    a.FK_BUDGETORDERINTAKEYEAR,
    a.BUDGET,
    a.MARGE,
    a.BUDGETPRODUCTION,
    a.PK_U_BUDGETORDERCATEGORY,
    a.FK_BUDGETORDERCATEGORY,
    a.FK_BUDGETSERVICECONTRACTTYPE,
    a.INVOICEORDERINTAKE,
    b.PK_R_ORDER,
    b.FK_ORDERCATEGORY,
    c.PK_R_SALESORDERDETAILMISC,
    c.NETSALESAMOUNT,
    c.ORDERDATE,
    //c.FK_SALESPERSON,
    d.FK_FINANCIALYEAR,
    d.PRODUCTIONPERCENTAGE

    FROM U_BUDGETORDERCATEGORY a
    LEFT JOIN R_ORDER b ON a.FK_BUDGETORDERCATEGORY = b.FK_ORDERCATEGORY
    LEFT JOIN V_R_SALESORDERDETAILMISC c ON b.PK_R_ORDER = c.FK_ORDER
    LEFT JOIN U_PRODUCTION d ON c.PK_R_SALESORDERDETAILMISC = d.FK_SALESORDERDETAILMISC;

     

    Show Less
Leaderboard

Customer Story

Qlik Data Integration & Qlik Replicate story

Qlik enables a frictionless migration to AWS cloud by Empresas SB, a group of Chilean health and beauty retail companies employing 10,000 people with 600 points of sale.

Customer Story

Building a Collaborative Analytics Space

Qlik Luminary Stephanie Robinson of JBS USA, the US arm of the global food company employing 70,000 in the US, and over 270,000 people worldwide.

Location and Language Groups

Choose a Group

Join one of our Location and Language groups. Find one that suits you today!

Collaborate

Healthcare User Group

Healthcare User Group

A private group is for healthcare organizations, partners, and Qlik healthcare staff to collaborate and share insights..

All are welcome

Japan Group

Japan

Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。

Request to join

Brasil Group

Brazil

Welcome to the group for Brazil users. .All discussions will be in Portuguese.

open to all

Blogs

Community News

Hear from your Community team as they tell you about updates to the Qlik Community Platform and more!