<?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: Check if Table available in Database in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258692#M1292678</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philipp,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a SQL server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so then you can do your ODBC / OLEDB connect then run a:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select name &lt;/P&gt;&lt;P&gt;from sys.tables&lt;/P&gt;&lt;P&gt;where name = 'table to check'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Mar 2017 10:10:27 GMT</pubDate>
    <dc:creator>adamdavi3s</dc:creator>
    <dc:date>2017-03-09T10:10:27Z</dc:date>
    <item>
      <title>Check if Table available in Database</title>
      <link>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258691#M1292675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I spent a lot of Time in searching a solution for the topic but I can't find the right one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Problem is that I have a Load-Script for loading tables from several different Databases. Most of the tables are available in all of this Systems. They are decentral production servers. But some tables are not available in all Databases.&lt;/P&gt;&lt;P&gt;My question is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there an option how i can check that the table exists in the database or not? And just when the table exist I start the Data-Load with a sql.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philipp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258691#M1292675</guid>
      <dc:creator>phil-ebm</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Table available in Database</title>
      <link>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258692#M1292678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philipp,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a SQL server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so then you can do your ODBC / OLEDB connect then run a:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select name &lt;/P&gt;&lt;P&gt;from sys.tables&lt;/P&gt;&lt;P&gt;where name = 'table to check'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 10:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258692#M1292678</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-03-09T10:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Table available in Database</title>
      <link>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258693#M1292682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it's an Oracle SQL Server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 10:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258693#M1292682</guid>
      <dc:creator>phil-ebm</dc:creator>
      <dc:date>2017-03-09T10:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Table available in Database</title>
      <link>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258694#M1292683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with below sql query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT TABLE_NAME&lt;/P&gt;&lt;P&gt;FROM INFORMATION_SCHEMA.TABLES&lt;/P&gt;&lt;P&gt;WHERE TABLE_TYPE = 'BASE TABLE'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 10:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Check-if-Table-available-in-Database/m-p/1258694#M1292683</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-03-09T10:12:36Z</dc:date>
    </item>
  </channel>
</rss>

