<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Redshift eror Talend 7.1 in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283626#M57482</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Here's the solution.&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D73p000004kY6wCAE#M7861" target="_blank"&gt;https://community.talend.com/t5/Installing-and-Upgrading/Talend-7-2-1/m-p/153084#M7861&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Thu, 07 Mar 2019 13:00:59 GMT</pubDate>
    <dc:creator>André-Baependi</dc:creator>
    <dc:date>2019-03-07T13:00:59Z</dc:date>
    <item>
      <title>Redshift eror Talend 7.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283623#M57479</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I'm facing a problem with tRedshifRow, the stack says about regex but my query got no regex.&lt;/P&gt; 
&lt;P&gt;On modules it show the installed driver for RedShift but it don't appears at&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;/opt/talend/configuration/.m2/repository/org/talend/libraries&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2019-02-21 19-27-13.png" style="width: 742px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3JO.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156418i51488945036F9F0E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3JO.png" alt="0683p000009M3JO.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Look the query, i identified that the error occurs at final step in last query, but the qury runs sucessfully at dbeaver sgbd and web aws athena.&lt;/P&gt; 
&lt;P&gt;but fails on tredshiftrow&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;"&lt;BR /&gt;&lt;BR /&gt;CREATE TEMPORARY TABLE TMP_SITE_PRODUTO AS(&lt;BR /&gt;SELECT COD_PRODUTO,&lt;BR /&gt;DESCRICAO,&lt;BR /&gt;CASE WHEN COD_EAN IS NULL THEN '-1' ELSE COD_EAN END COD_EAN,&lt;BR /&gt;FLG_PERSONALIZACAO as FLG_PERSONALIZACAO&lt;BR /&gt;FROM (&lt;BR /&gt;SELECT&lt;BR /&gt;MSSQL_PROD.SKU AS COD_PRODUTO,&lt;BR /&gt;MODELOS.descricao,&lt;BR /&gt;MSSQL_PROD.EAN AS COD_EAN,&lt;BR /&gt;CASE WHEN PROD_PERSONAL.MODELO IS NULL THEN 'N'&lt;BR /&gt;WHEN PROD_PERSONAL.MODELO IS NOT NULL AND PROD_PERSONAL.ATIVO = 'f' then 'N'&lt;BR /&gt;ELSE 'S' END FLG_PERSONALIZACAO,&lt;BR /&gt;MSSQL_PROD.DAT_CARGA,&lt;BR /&gt;RANK() OVER(PARTITION BY MSSQL_PROD.SKU ORDER BY MAX(MSSQL_PROD.DAT_CARGA)desc) AS LINHA&lt;BR /&gt;FROM CENTAURO_SPECTRUM.MSSQL_6000_CTR_V1_PRODUTOS MSSQL_PROD&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.MSSQL_6000_CTR_V1_MODELOS MODELOS&lt;BR /&gt;ON MODELOS.codigo = MSSQL_PROD.modeloid&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.MSSQL_6000_CTR_V1_PRODUTOS_PERSONALIZACOES PROD_PERSONAL&lt;BR /&gt;ON MSSQL_PROD.MODELOID = PROD_PERSONAL.MODELO&lt;BR /&gt;AND MSSQL_PROD.COR_CODIGO = PROD_PERSONAL.COR&lt;BR /&gt;AND PROD_PERSONAL.ATIVO = 't'&lt;BR /&gt;--left join CENTAURO_SPECTRUM.MSSQL_6000_CTR_V1_MODELOS_VIRTUAIS MOD_VIRTUAL&lt;BR /&gt;--on PROD_PERSONAL.CodigoModeloVirtualPrePersonalizado = MOD_VIRTUAL.Codigo&lt;BR /&gt;WHERE MSSQL_PROD.SKU NOT LIKE '%XXXXXX%'&lt;BR /&gt;GROUP BY&lt;BR /&gt;MSSQL_PROD.SKU,&lt;BR /&gt;MODELOS.descricao,&lt;BR /&gt;MSSQL_PROD.EAN,&lt;BR /&gt;CASE WHEN PROD_PERSONAL.MODELO IS NULL THEN 'N'&lt;BR /&gt;WHEN PROD_PERSONAL.MODELO IS NOT NULL AND PROD_PERSONAL.ATIVO = 'f' then 'N'&lt;BR /&gt;ELSE 'S' END,&lt;BR /&gt;MSSQL_PROD.DAT_CARGA&lt;BR /&gt;)&lt;BR /&gt;WHERE LINHA = 1&lt;BR /&gt;);&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;CREATE TEMPORARY TABLE TMP_PRODUTO AS(&lt;BR /&gt;select&lt;BR /&gt;case&lt;BR /&gt;when a.cod_produto is null then 'SITEEEEE'&lt;BR /&gt;else 'SISPACCC'&lt;BR /&gt;end origem,&lt;BR /&gt;case&lt;BR /&gt;when a.cod_produto is null then b.cod_produto&lt;BR /&gt;else a.cod_produto&lt;BR /&gt;end cod_produto,&lt;BR /&gt;case&lt;BR /&gt;when a.des_produto is null then upper(b.descricao)&lt;BR /&gt;else a.des_produto&lt;BR /&gt;end des_produto,&lt;BR /&gt;case&lt;BR /&gt;when b.flg_personalizacao is null then 'N'&lt;BR /&gt;else b.flg_personalizacao&lt;BR /&gt;end flg_personalizacao&lt;BR /&gt;from CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PRODUTOS a&lt;BR /&gt;full outer join TMP_SITE_PRODUTO b&lt;BR /&gt;on a.cod_produto = b.cod_produto&lt;BR /&gt;);&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;CREATE TEMPORARY TABLE TMP_ROYALTIES AS(&lt;BR /&gt;SELECT DISTINCT COD_MODELO FROM CENTAURO_SPECTRUM.IFX_0000_SIS_V1_CONTRATO_ROYALTIES_MOD&lt;BR /&gt;WHERE CAST(TO_CHAR(SYSDATE,'YYYYMMDD') AS INTEGER ) BETWEEN DATA_INICIAL_CONTRATO AND DATA_FINAL_CONTRATO&lt;BR /&gt;);&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;CREATE TEMPORARY TABLE TMP_PRODUTO_MODELO AS(&lt;BR /&gt;select * from&lt;BR /&gt;(&lt;BR /&gt;select&lt;BR /&gt;a.origem,&lt;BR /&gt;a.cod_produto,&lt;BR /&gt;a.des_produto,&lt;BR /&gt;case when b.cod_produto_mod is null then c.codigo else b.cod_produto_mod end cod_modelo,&lt;BR /&gt;case when b.des_modelo is null then upper(c.descricao) else b.des_modelo end dsc_modelo,&lt;BR /&gt;a.flg_personalizacao&lt;BR /&gt;from TMP_PRODUTO a&lt;BR /&gt;full outer join&lt;BR /&gt;(select * from CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PRODUTO_MODELO&lt;BR /&gt;where cod_produto_mod not like '%****%') b&lt;BR /&gt;on left(a.cod_produto,6) = b.cod_produto_mod&lt;BR /&gt;full outer join&lt;BR /&gt;(select * from CENTAURO_SPECTRUM.MSSQL_6000_CTR_V1_MODELOS&lt;BR /&gt;where codigo not like '%FK%' and codigo not like '%FAKE%' and codigo not like '%****%') c&lt;BR /&gt;on left(a.cod_produto,6) = c.codigo&lt;BR /&gt;)&lt;BR /&gt;where origem is not null&lt;BR /&gt;);&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;CREATE TEMPORARY TABLE TMP_UDN as(&lt;BR /&gt;SELECT PRODUTO_UDN.COD_PRODUTO AS COD_PRODUTO,&lt;BR /&gt;UNID_NECESSIDADE.COD_UDN AS COD_UDN,&lt;BR /&gt;UPPER(UNID_NECESSIDADE.DES_UDN) AS DSC_UDN&lt;BR /&gt;FROM CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PRODUTO_UDN PRODUTO_UDN&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_UNID_NECESSIDADE UNID_NECESSIDADE&lt;BR /&gt;ON PRODUTO_UDN.COD_UDN = UNID_NECESSIDADE.COD_UDN&lt;BR /&gt;);&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;create table TEST as(&lt;BR /&gt;SELECT&lt;BR /&gt;case when a.origem = 'SISPACCC' then 1 else 2 end cod_origem,&lt;BR /&gt;a.origem as dsc_origem,&lt;BR /&gt;a.cod_produto,&lt;BR /&gt;a.des_produto as dsc_produto,&lt;BR /&gt;a.cod_modelo,&lt;BR /&gt;a.dsc_modelo,&lt;BR /&gt;TAB_TAMANHOS.COD_TAMANHO AS COD_TAMANHO,&lt;BR /&gt;TAB_TAMANHOS.DES_TAMANHO AS DSC_TAMANHO,&lt;BR /&gt;TAB_CORES.COD_COR AS COD_COR,&lt;BR /&gt;TAB_CORES.DESCRICAO_COR AS DSC_COR,&lt;BR /&gt;case when PRODUTO_EAN.COD_PRODUTO_EAN is null then '-1' else COD_PRODUTO_EAN end COD_EAN,&lt;BR /&gt;cast(PRODUTOS.COD_NCM as integer) AS COD_NCM,&lt;BR /&gt;MARCA.COD_MARCA AS COD_MARCA,&lt;BR /&gt;UPPER(MARCA.DES_MARCA) AS DSC_MARCA,&lt;BR /&gt;SALA.COD_NUCLEO AS COD_SALA,&lt;BR /&gt;UPPER(SALA.DES_NUCLEO) AS DSC_SALA,&lt;BR /&gt;MESA.COD_MESA AS COD_MESA,&lt;BR /&gt;UPPER(MESA.DES_MESA) AS DSC_MESA,&lt;BR /&gt;GRUPO.COD_GRUPO AS COD_GRUPO,&lt;BR /&gt;UPPER(GRUPO.DES_GRUPO) AS DSC_GRUPO,&lt;BR /&gt;SUBGRUPO.COD_SUBGRUPO AS COD_SUBGRUPO,&lt;BR /&gt;UPPER(SUBGRUPO.DES_SUBGRUPO) AS DSC_SUBGRUPO,&lt;BR /&gt;CATEGORIA.COD_CATEGORIA AS COD_CATEGORIA,&lt;BR /&gt;UPPER(CATEGORIA.DES_CATEGORIA) AS DSC_CATEGORIA,&lt;BR /&gt;LINHA.COD_LINHA AS COD_LINHA,&lt;BR /&gt;UPPER(LINHA.DES_LINHA) AS DSC_LINHA,&lt;BR /&gt;MODALIDADE.COD_MODALIDADE AS COD_MODALIDADE,&lt;BR /&gt;UPPER(MODALIDADE.DES_MODALIDADE) AS DSC_MODALIDADE,&lt;BR /&gt;SEXO.COD_SEXO AS COD_GENERO,&lt;BR /&gt;UPPER(SEXO.DES_SEXO) AS DSC_GENERO,&lt;BR /&gt;FX_ETARIA.COD_FAIXA_ETARIA AS COD_FX_ETARIA,&lt;BR /&gt;UPPER(FX_ETARIA.DES_FAIXA_ETARIA) AS DSC_FX_ETARIA,&lt;BR /&gt;CLASSE.COD_CLASSE AS COD_CLASSE,&lt;BR /&gt;UPPER(CLASSE.DES_CLASSE) AS DSC_CLASSE,&lt;BR /&gt;DIVISAO_GRUPO.COD_DIVISAO AS COD_DIVISAO,&lt;BR /&gt;UPPER(DIVISAO_GRUPO.DES_DIVISAO) AS DSC_DIVISAO,&lt;BR /&gt;CAST(CATEGORIA.COD_CATEGORIA || SUBGRUPO.COD_SUBGRUPO || CLASSE.COD_CLASSE || GRUPO.COD_GRUPO AS VARCHAR(20)) AS COD_CSC,&lt;BR /&gt;REPLACE(CATEGORIA.DES_CATEGORIA,'\n','') || '-' || REPLACE(SUBGRUPO.DES_SUBGRUPO,'\n','') || '-' || CLASSE.COD_CLASSE AS DSC_CSC,&lt;BR /&gt;cod_udn,&lt;BR /&gt;dsc_udn,&lt;BR /&gt;'-1' as cod_estilo,&lt;BR /&gt;'-1' as dsc_estilo,&lt;BR /&gt;'-1' as cod_hub,&lt;BR /&gt;'-1' as dsc_hub,&lt;BR /&gt;'-1' as cod_seller,&lt;BR /&gt;'-1' as dsc_seller,&lt;BR /&gt;0.0 as PCT_COMISSAO,&lt;BR /&gt;case when (IFX_COM.cod_grupo is null and IFX_COM.cod_subgrupo is null) then 'N' else 'S' end FLG_COMISSAO,&lt;BR /&gt;a.flg_personalizacao,&lt;BR /&gt;PRODUTOS.IDT_TIP_VENDA as IDT_TIP_VENDA,&lt;BR /&gt;case when TMP_ROYALTIES.cod_modelo is null then 'N' else 'S' end flg_royalties,&lt;BR /&gt;SYSDATE AS DAT_ATUALIZACAO&lt;BR /&gt;FROM TMP_PRODUTO_MODELO a&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PRODUTOS PRODUTOS&lt;BR /&gt;ON produtos.cod_produto = a.cod_produto&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PRODUTO_MODELO PROD_MODELO&lt;BR /&gt;ON a.cod_modelo = PROD_MODELO.COD_PRODUTO_MOD&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PRODUTO_EAN PRODUTO_EAN&lt;BR /&gt;ON PRODUTOS.COD_PRODUTO = PRODUTO_EAN.COD_PRODUTO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_GRUPO GRUPO&lt;BR /&gt;ON PROD_MODELO.COD_GRUPO = GRUPO.COD_GRUPO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_SUBGRUPO SUBGRUPO&lt;BR /&gt;ON GRUPO.COD_GRUPO = SUBGRUPO.COD_GRUPO&lt;BR /&gt;AND PROD_MODELO.COD_SUBGRUPO = SUBGRUPO.COD_SUBGRUPO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_CATEGORIA CATEGORIA&lt;BR /&gt;ON PROD_MODELO.COD_CATEGORIA = CATEGORIA.COD_CATEGORIA&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_GENERO_FX_ETARIA GENERO_FX_ETARIA&lt;BR /&gt;ON PROD_MODELO.COD_FAIXA_ETARIA = GENERO_FX_ETARIA.COD_FAIXA_ETARIA&lt;BR /&gt;AND PROD_MODELO.COD_GENERO = GENERO_FX_ETARIA.COD_SEXO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_SEXO SEXO&lt;BR /&gt;ON GENERO_FX_ETARIA.COD_SEXO = SEXO.COD_SEXO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_FAIXA_ETARIA FX_ETARIA&lt;BR /&gt;ON GENERO_FX_ETARIA.COD_FAIXA_ETARIA = FX_ETARIA.COD_FAIXA_ETARIA&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_CLASSE CLASSE&lt;BR /&gt;ON GENERO_FX_ETARIA.COD_CLASSE = CLASSE.COD_CLASSE&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_MESA_CATSB MESA_CATSB&lt;BR /&gt;ON PROD_MODELO.COD_GRUPO = MESA_CATSB.COD_GRUPO&lt;BR /&gt;AND PROD_MODELO.COD_SUBGRUPO = MESA_CATSB.COD_SUBGRUPO&lt;BR /&gt;AND PROD_MODELO.COD_CATEGORIA = MESA_CATSB.COD_CATEGORIA&lt;BR /&gt;AND CLASSE.COD_CLASSE = MESA_CATSB.COD_CLASSE&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_MESA MESA&lt;BR /&gt;ON MESA_CATSB.COD_MESA = MESA.COD_MESA&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_NUCLEO SALA&lt;BR /&gt;ON MESA.COD_NUCLEO = SALA.COD_NUCLEO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_MARCA MARCA&lt;BR /&gt;ON PROD_MODELO.COD_MARCA = MARCA.COD_MARCA&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_LINHA LINHA&lt;BR /&gt;ON PROD_MODELO.COD_LINHA = LINHA.COD_LINHA&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_DIVISAO_GRUPO DIVISAO_GRUPO&lt;BR /&gt;ON GRUPO.COD_DIVISAO = DIVISAO_GRUPO.COD_DIVISAO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_MODALIDADE MODALIDADE&lt;BR /&gt;ON PROD_MODELO.COD_MODALIDADE = MODALIDADE.COD_MODALIDADE&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_TABELA_TAMANHOS TAB_TAMANHOS&lt;BR /&gt;ON PRODUTOS.COD_TAMANHO = TAB_TAMANHOS.COD_TAMANHO&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_TABELA_CORES TAB_CORES&lt;BR /&gt;ON PRODUTOS.COD_COR = TAB_CORES.COD_COR&lt;BR /&gt;LEFT JOIN CENTAURO_SPECTRUM.IFX_0000_SIS_V1_PARAM_COMIS_DET IFX_COM&lt;BR /&gt;ON SUBSTRING(PRODUTOS.COD_CAT_STR, 1,4) = IFX_COM.COD_GRUPO&lt;BR /&gt;AND SUBSTRING(PRODUTOS.COD_CAT_STR, 5,4) = IFX_COM.COD_SUBGRUPO&lt;BR /&gt;LEFT JOIN TMP_ROYALTIES&lt;BR /&gt;ON a.COD_MODELO = TMP_ROYALTIES.COD_MODELO&lt;BR /&gt;LEFT JOIN TMP_UDN&lt;BR /&gt;ON a.COD_PRODUTO = TMP_UDN.COD_PRODUTO&lt;BR /&gt;);&lt;/P&gt; 
&lt;P&gt;"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:31:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283623#M57479</guid>
      <dc:creator>André-Baependi</dc:creator>
      <dc:date>2024-11-16T06:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift eror Talend 7.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283624#M57480</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;some peoples report this erro&amp;nbsp;not only ina Talend, and it looks like driver version related&lt;BR /&gt;&lt;A href="https://intellij-support.jetbrains.com/hc/en-us/community/posts/360001819459-java-lang-StackOverflowError-on-select-count-from-a-large-select-with-a-lot-of-left-joins-in-redshift" target="_self" rel="nofollow noopener noreferrer"&gt;https://intellij-support.jetbrains.com/hc/en-us/community/posts/360001819459-java-lang-StackOverflowError-on-select-count-from-a-large-select-with-a-lot-of-left-joins-in-redshift&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://forums.aws.amazon.com/thread.jspa?threadID=286117" target="_self" rel="nofollow noopener noreferrer"&gt;https://forums.aws.amazon.com/thread.jspa?threadID=286117&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/50708052/overflow-error-in-redshift" target="_self" rel="nofollow noopener noreferrer"&gt;https://stackoverflow.com/questions/50708052/overflow-error-in-redshift&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;as variant try to download different version Redshift JDBC and test old and most recent drivers with tJDBCRow&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 23:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283624#M57480</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2019-02-21T23:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift eror Talend 7.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283625#M57481</link>
      <description>&lt;P&gt;Hello Vapukov,&lt;/P&gt; 
&lt;P&gt;tks for answer.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Anyone knows how to uninstall the problematic version?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Anyone know how i can associate other version of JDBC driver for amazon components?&lt;/P&gt; 
&lt;P&gt;The module feature just give me an option to download the problematic 1027 version when i click at right corner green arrow.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2019-02-22 10-07-01.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3L6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/145366i9A011E6512A87FA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3L6.png" alt="0683p000009M3L6.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;When i download other driver and do manually import and install, it doesn't associate to my components, look below the print.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="czxczcz.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M38H.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156427i14D5C00D14D3BE6C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M38H.png" alt="0683p000009M38H.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Any suggestions?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 13:16:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283625#M57481</guid>
      <dc:creator>André-Baependi</dc:creator>
      <dc:date>2019-02-22T13:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift eror Talend 7.1</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283626#M57482</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Here's the solution.&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D73p000004kY6wCAE#M7861" target="_blank"&gt;https://community.talend.com/t5/Installing-and-Upgrading/Talend-7-2-1/m-p/153084#M7861&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 13:00:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Redshift-eror-Talend-7-1/m-p/2283626#M57482</guid>
      <dc:creator>André-Baependi</dc:creator>
      <dc:date>2019-03-07T13:00:59Z</dc:date>
    </item>
  </channel>
</rss>

