<?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: Carregar tabelas e colunas SQL. in Brasil</title>
    <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283750#M45948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sim, isso irá trazer uma tabela com 3 colunas com os nomes das tabelas e colunas do seu banco.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2017 18:24:09 GMT</pubDate>
    <dc:creator>Clever_Anjos</dc:creator>
    <dc:date>2017-02-02T18:24:09Z</dc:date>
    <item>
      <title>Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283746#M45944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Boa tarde!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Alguém sabe como posso fazer para carregar todas as tabelas de um BD SQL para que possa saber todas as tabelas e colunas do banco??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:05:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283746#M45944</guid>
      <dc:creator>cleitoncabral2</dc:creator>
      <dc:date>2017-02-02T18:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283747#M45945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qual banco?&lt;/P&gt;&lt;P&gt;SQL Server, Oracle, MySQL, etc?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283747#M45945</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2017-02-02T18:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283748#M45946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Se for SQL Server eu gosto de usar essa aqui:&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14860593141974320 jive_text_macro" jivemacro_uid="_14860593141974320" modifiedtitle="true"&gt;
&lt;P&gt;select t.name as table_name&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ,SCHEMA_NAME(schema_id) as schema_name&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ,c.name as column_name&lt;/P&gt;
&lt;P&gt;from sys.tables as t&lt;/P&gt;
&lt;P&gt;inner join sys.columns c on t.OBJECT_ID = c.OBJECT_ID&lt;/P&gt;
&lt;P&gt;where 1=1&lt;/P&gt;
&lt;P&gt;order by schema_name&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ,table_name;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:15:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283748#M45946</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2017-02-02T18:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283749#M45947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/21667"&gt;cleveranjos&lt;/A&gt;‌ eu colo isso no script e coloco a conexão?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;É um SQL Server!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283749#M45947</guid>
      <dc:creator>cleitoncabral2</dc:creator>
      <dc:date>2017-02-02T18:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283750#M45948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sim, isso irá trazer uma tabela com 3 colunas com os nomes das tabelas e colunas do seu banco.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283750#M45948</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2017-02-02T18:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283751#M45949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Você pode fazer isso interativamente também usando o "Selecionar"&lt;/P&gt;&lt;P&gt;&lt;IMG alt="248505.gif" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/151783_248505.gif" style="height: 277px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:25:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283751#M45949</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2017-02-02T18:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283752#M45950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Não entendi a parte de uma tabela com 3 colunas!!! hehehe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 18:46:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283752#M45950</guid>
      <dc:creator>cleitoncabral2</dc:creator>
      <dc:date>2017-02-02T18:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283753#M45951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Se você você tivesse testado aquele SQL que te passei (Assumindo que seja um SQL Server) ele irá trazer no seu Qlik uma tabela +- assim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capturar.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/151884_Capturar.PNG" style="height: 203px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 11:03:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283753#M45951</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2017-02-03T11:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Carregar tabelas e colunas SQL.</title>
      <link>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283754#M45952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Entendi, eu vi lá deu certo, mas parece que algumas tabelas ele não trouxe... Mas já ajudou e muito!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 11:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Carregar-tabelas-e-colunas-SQL/m-p/1283754#M45952</guid>
      <dc:creator>cleitoncabral2</dc:creator>
      <dc:date>2017-02-03T11:20:36Z</dc:date>
    </item>
  </channel>
</rss>

