<?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 Qlik Data Catalyst June 2020 SQL Server data source error in Catalog and Lineage</title>
    <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1722688#M365</link>
    <description>&lt;P&gt;After installing QDC June 2020 release, I am observing strange behavior when trying to pull data from a SQL Server data source. I have deployed the correct driver and successfully added the source connection, however, when attempting to 'Add Data' from this source, I am seeing the error below(Please note i've replaced my actual db name with DBNAME):&lt;/P&gt;&lt;P&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)&lt;BR /&gt;at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)&lt;BR /&gt;at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)&lt;BR /&gt;at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)&lt;BR /&gt;at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)&lt;BR /&gt;at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)&lt;BR /&gt;at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)&lt;BR /&gt;at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:494)&lt;BR /&gt;at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)&lt;BR /&gt;at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)&lt;BR /&gt;at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:1025)&lt;BR /&gt;at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)&lt;BR /&gt;at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)&lt;BR /&gt;at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1137)&lt;BR /&gt;at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)&lt;BR /&gt;at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:319)&lt;BR /&gt;at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)&lt;BR /&gt;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;BR /&gt;at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:748)&lt;BR /&gt;Caused by: com.podiumdata.base.error.PodiumFault: core.error.code.METADATA_LOAD_FAILURE - Failed to get schema metadata&lt;BR /&gt;at com.nvs.core.metadata.MetaDataObject.getSchemaMetaData(MetaDataObject.java:132)&lt;BR /&gt;at com.nvs.core.metadata.MetaDataObject.getSchemaMetaData(MetaDataObject.java:36)&lt;BR /&gt;... 104 more&lt;BR /&gt;Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name '[DBNAME].sys.schemas'.&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:262)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1632)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteStatement(SQLServerStatement.java:872)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement$StmtExecCmd.doExecute(SQLServerStatement.java:767)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:7225)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:3053)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:247)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:222)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeQueryInternal(SQLServerStatement.java:699)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getResultSetFromInternalQueries(SQLServerDatabaseMetaData.java:290)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getSchemasInternal(SQLServerDatabaseMetaData.java:1480)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getSchemas(SQLServerDatabaseMetaData.java:1499)&lt;BR /&gt;at com.nvs.core.metadata.MetaDataObject.getSchemaMetaData(MetaDataObject.java:130)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While trying to diagnose, I captured the query from QDC on the SQL server side using the XEvent Profiler only to find that QDC is adding erroneous brackets as seen here:&lt;/P&gt;&lt;P&gt;select [[DBNAME]]].sys.schemas.name 'TABLE_SCHEM', CASE WHEN [[DBNAME]]].sys.schemas.name IN ('dbo', 'guest','INFORMATION_SCHEMA','sys','db_owner', 'db_accessadmin', 'db_securityadmin', 'db_ddladmin' ,'db_backupoperator','db_datareader','db_datawriter','db_denydatareader','db_denydatawriter') THEN null ELSE '[DBNAME]' END 'TABLE_CATALOG' from [[DBNAME]]].sys.schemas order by 2, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attempted to remove the escape characters from the database driver settings located&amp;nbsp;@ Admin&amp;gt;Database Drivers&amp;gt;SQLSERVER&amp;gt; Edit Details...&lt;/P&gt;&lt;P&gt;However, this throws a new error when attempting to pull data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error!&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;pgui.error.code.DYNAMIC_ERROR - null&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone been able to successfully pull data from a SQL Server connection on June 2020? This was a clean install but I was previously on December 2019 which was working without issues. After attempting to upgrade from Dec 2019 &amp;gt; June 2020 and experiencing issues, I started with fresh server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Dec 2021 22:35:04 GMT</pubDate>
    <dc:creator>jonrayos</dc:creator>
    <dc:date>2021-12-07T22:35:04Z</dc:date>
    <item>
      <title>Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1722688#M365</link>
      <description>&lt;P&gt;After installing QDC June 2020 release, I am observing strange behavior when trying to pull data from a SQL Server data source. I have deployed the correct driver and successfully added the source connection, however, when attempting to 'Add Data' from this source, I am seeing the error below(Please note i've replaced my actual db name with DBNAME):&lt;/P&gt;&lt;P&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)&lt;BR /&gt;at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)&lt;BR /&gt;at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)&lt;BR /&gt;at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)&lt;BR /&gt;at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)&lt;BR /&gt;at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)&lt;BR /&gt;at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)&lt;BR /&gt;at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:494)&lt;BR /&gt;at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)&lt;BR /&gt;at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)&lt;BR /&gt;at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:1025)&lt;BR /&gt;at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)&lt;BR /&gt;at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)&lt;BR /&gt;at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1137)&lt;BR /&gt;at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)&lt;BR /&gt;at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:319)&lt;BR /&gt;at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)&lt;BR /&gt;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;BR /&gt;at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:748)&lt;BR /&gt;Caused by: com.podiumdata.base.error.PodiumFault: core.error.code.METADATA_LOAD_FAILURE - Failed to get schema metadata&lt;BR /&gt;at com.nvs.core.metadata.MetaDataObject.getSchemaMetaData(MetaDataObject.java:132)&lt;BR /&gt;at com.nvs.core.metadata.MetaDataObject.getSchemaMetaData(MetaDataObject.java:36)&lt;BR /&gt;... 104 more&lt;BR /&gt;Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name '[DBNAME].sys.schemas'.&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:262)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1632)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteStatement(SQLServerStatement.java:872)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement$StmtExecCmd.doExecute(SQLServerStatement.java:767)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:7225)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:3053)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:247)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:222)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeQueryInternal(SQLServerStatement.java:699)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getResultSetFromInternalQueries(SQLServerDatabaseMetaData.java:290)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getSchemasInternal(SQLServerDatabaseMetaData.java:1480)&lt;BR /&gt;at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getSchemas(SQLServerDatabaseMetaData.java:1499)&lt;BR /&gt;at com.nvs.core.metadata.MetaDataObject.getSchemaMetaData(MetaDataObject.java:130)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While trying to diagnose, I captured the query from QDC on the SQL server side using the XEvent Profiler only to find that QDC is adding erroneous brackets as seen here:&lt;/P&gt;&lt;P&gt;select [[DBNAME]]].sys.schemas.name 'TABLE_SCHEM', CASE WHEN [[DBNAME]]].sys.schemas.name IN ('dbo', 'guest','INFORMATION_SCHEMA','sys','db_owner', 'db_accessadmin', 'db_securityadmin', 'db_ddladmin' ,'db_backupoperator','db_datareader','db_datawriter','db_denydatareader','db_denydatawriter') THEN null ELSE '[DBNAME]' END 'TABLE_CATALOG' from [[DBNAME]]].sys.schemas order by 2, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attempted to remove the escape characters from the database driver settings located&amp;nbsp;@ Admin&amp;gt;Database Drivers&amp;gt;SQLSERVER&amp;gt; Edit Details...&lt;/P&gt;&lt;P&gt;However, this throws a new error when attempting to pull data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error!&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;pgui.error.code.DYNAMIC_ERROR - null&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone been able to successfully pull data from a SQL Server connection on June 2020? This was a clean install but I was previously on December 2019 which was working without issues. After attempting to upgrade from Dec 2019 &amp;gt; June 2020 and experiencing issues, I started with fresh server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 22:35:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1722688#M365</guid>
      <dc:creator>jonrayos</dc:creator>
      <dc:date>2021-12-07T22:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1722747#M367</link>
      <description>&lt;P&gt;Sql Server version? And what version driver are you using?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 21:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1722747#M367</guid>
      <dc:creator>DaveHowland</dc:creator>
      <dc:date>2020-06-26T21:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723090#M371</link>
      <description>&lt;P&gt;SQL Server version 2017 &amp;amp;&amp;nbsp;Microsoft JDBC Driver 8.2 for SQL Server (mssql-jdbc-8.2.0.jre8.jar)&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 13:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723090#M371</guid>
      <dc:creator>jonrayos</dc:creator>
      <dc:date>2020-06-29T13:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723155#M372</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/119962"&gt;@jonrayos&lt;/a&gt;&amp;nbsp; ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you be willing to try 8.2.2 jre8?&lt;/P&gt;&lt;P&gt;This looks a lot like it's a jdbc driver issue, and that's one I've had some good success with.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 15:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723155#M372</guid>
      <dc:creator>DaveHowland</dc:creator>
      <dc:date>2020-06-29T15:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723186#M373</link>
      <description>&lt;P&gt;Thanks for the suggestion David,&lt;/P&gt;&lt;P&gt;Unfortunately we are seeing the same error with 8.2.2 jre8&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 16:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723186#M373</guid>
      <dc:creator>jonrayos</dc:creator>
      <dc:date>2020-06-29T16:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723278#M375</link>
      <description>&lt;P&gt;Thanks for that...it will be needed at some point in any case.&lt;/P&gt;&lt;P&gt;Attached is a copy of the Driver registration screen, can you show me what yours looks like?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 21:02:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723278#M375</guid>
      <dc:creator>DaveHowland</dc:creator>
      <dc:date>2020-06-29T21:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723281#M376</link>
      <description>&lt;P&gt;Dave,&lt;/P&gt;&lt;P&gt;Please see the attached screenshot. I did play around with the escape character default values while attempting to fix the issue but have set them back to their original values.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 21:10:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1723281#M376</guid>
      <dc:creator>jonrayos</dc:creator>
      <dc:date>2020-06-29T21:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1724012#M388</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/119962"&gt;@jonrayos&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;Can you please create a support ticket, so we can help troubleshoot this issue&lt;SPAN&gt;&amp;nbsp;better with you. The link to create a support ticket is :&lt;/SPAN&gt;&lt;SPAN&gt;&lt;U&gt;&lt;A title="https://support.qlik.com/qs_contactus" href="https://support.qlik.com/QS_ContactUs" target="_blank" rel="noreferrer noopener"&gt;https://support.qlik.com/QS_ContactUs&lt;/A&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks, David&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Jul 2020 12:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1724012#M388</guid>
      <dc:creator>DaveHowland</dc:creator>
      <dc:date>2020-07-01T12:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1724955#M390</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am facing the same issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has there been any solution for this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jul 2020 02:16:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1724955#M390</guid>
      <dc:creator>qliktechie15</dc:creator>
      <dc:date>2020-07-04T02:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1725377#M394</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/100144"&gt;@qliktechie15&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I have submitted a support ticket - I will post the solution when it comes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 13:42:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1725377#M394</guid>
      <dc:creator>jonrayos</dc:creator>
      <dc:date>2020-07-06T13:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1743723#M462</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/100144"&gt;@qliktechie15&lt;/a&gt;&amp;nbsp; I have been informed that the September release includes a fix for this bug.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 19:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1743723#M462</guid>
      <dc:creator>jonrayos</dc:creator>
      <dc:date>2020-09-14T19:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1743768#M463</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/119962"&gt;@jonrayos&lt;/a&gt;&amp;nbsp;- I will check !&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 22:39:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1743768#M463</guid>
      <dc:creator>qliktechie15</dc:creator>
      <dc:date>2020-09-14T22:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1796844#M569</link>
      <description>&lt;P&gt;...just in case you're still straggling with this please follow this link -&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Catalog-Discussions/QDC-and-JDBC-error-after-click-on-Test-Connection/m-p/1796843/highlight/true#M568" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Catalog-Discussions/QDC-and-JDBC-error-after-click-on-Test-Connection/m-p/1796843/highlight/true#M568&lt;/A&gt;&amp;nbsp;- maybe it'll help.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 10:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1796844#M569</guid>
      <dc:creator>maksim_senin</dc:creator>
      <dc:date>2021-04-05T10:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799856#M585</link>
      <description>&lt;P&gt;It is like an unresolved issue for me literally, been trying to get out of but at the end of the day same error is coming.&lt;/P&gt;&lt;P&gt;Let's hope solutions comes to this issue very soon&lt;FONT color="#FFFFFF"&gt;. &lt;A href="https://paynjmcdirect.com/" target="_self"&gt;njmcdirect&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 18:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799856#M585</guid>
      <dc:creator>aswinmawlee</dc:creator>
      <dc:date>2021-04-15T18:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799892#M586</link>
      <description>Hello,&lt;BR /&gt;From this picture, you can see that there are escape characters you can set to control quote identifiers.&lt;BR /&gt;I wonder if it would be a good test to remove those completely, and assuming they are currently at ‘[‘, they would reform your sql from ‘[[‘ to ‘[‘, making it legal.&lt;BR /&gt;If you’re unclear where that setting is .. that page is super helpful.. can I ask that you give that a shot?&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Apr 2021 20:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799892#M586</guid>
      <dc:creator>DaveHowland</dc:creator>
      <dc:date>2021-04-15T20:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799893#M587</link>
      <description>&lt;P&gt;Thank you so much for the boost up sir,&lt;/P&gt;&lt;P&gt;let me give it another try.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 20:30:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799893#M587</guid>
      <dc:creator>aswinmawlee</dc:creator>
      <dc:date>2021-04-15T20:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Data Catalyst June 2020 SQL Server data source error</title>
      <link>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799896#M588</link>
      <description>And here is the page I was alluding to .&lt;BR /&gt;The hyperlink didn't make it before.&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/catalog/February2021/Content/QlikCatalog/Administration/Database_Driver_Registration.htm" target="_blank"&gt;https://help.qlik.com/en-US/catalog/February2021/Content/QlikCatalog/Administration/Database_Driver_Registration.htm&lt;/A&gt;&lt;BR /&gt;Database driver registration ‒ Qlik Catalog&lt;BR /&gt;Database driver registration. Users must register drivers for all JDBC source databases. Administration (top navigation bar) provides a wizard for the modular registration of databases; the database name populates as an option when registering sources to Qlik Catalog via JDBC.To initiate the driver registration wizard from the Administration screen, select Database Drivers from the menu ribbon ...&lt;BR /&gt;help.qlik.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Apr 2021 20:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Catalog-and-Lineage/Qlik-Data-Catalyst-June-2020-SQL-Server-data-source-error/m-p/1799896#M588</guid>
      <dc:creator>DaveHowland</dc:creator>
      <dc:date>2021-04-15T20:40:20Z</dc:date>
    </item>
  </channel>
</rss>

