<?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: JMP ODBC Databricks and default catalog in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/887305#M104943</link>
    <description>&lt;P&gt;This is most likely due to the connection string missing:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Catalog=&amp;lt;catalog-name&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;where &amp;lt;catalog-name&amp;gt; is the catalog where your data is. There are many drivers that do not persist &amp;lt;catalog-name&amp;gt;, so JMP doesn't know there is one.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For instance, in say, Open Database, you'd modify it like (adding the Catalog=&amp;lt;catalog-name&amp;gt;entry):&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open Database(

  "Driver=Simba Spark ODBC Driver;Host=adb-***********.**.azuredatabricks.net;Port=443;HTTPPath=sql/protocolv1/o/*********/****-*******-**********;SSL=1;ThriftTransport=2;AuthMech=3;UID=token;PWD=*****;Catalog=&amp;lt;catalog-name&amp;gt;;Schema=&amp;lt;schema-name&amp;gt;;ProxyHost=***************;ProxyPort=****"

  );
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;For Data Connectors (introduced in JMP 18), you'd add the Catalog=&amp;lt;catalog-name&amp;gt; in the Connection value like:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bryan_boone_0-1752609532747.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78300iA2054BBEF3E0C70C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bryan_boone_0-1752609532747.png" alt="bryan_boone_0-1752609532747.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The other values are probably OK. With a JMP 18 Data Connector, ODBC configurations are obtained from the ODBC Manager and converted to a Data Connector.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jul 2025 20:01:53 GMT</pubDate>
    <dc:creator>bryan_boone</dc:creator>
    <dc:date>2025-07-15T20:01:53Z</dc:date>
    <item>
      <title>JMP ODBC Databricks and default catalog</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/670654#M85868</link>
      <description>&lt;P&gt;&amp;nbsp; When using the simba spark ODBC driver to connect to databricks, it is successful. However, it will only list tables that are part of the default catalog as shown below in terraform config for databricks. While the setting is "default_catalog_name"&amp;nbsp; (see&amp;nbsp;&lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/metastore_assignment" target="_blank" rel="noopener"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/metastore_assignment&lt;/A&gt;) this appears to be really the default "Schema" in databricks terms, or default "database" in ODBC terms. When using excel, this is not a problem, but for JMP it is. Also for JMP when setting the ODBC setting "database" to, say "bronze", JMP appends it to server default catalog name which results in gold.bronze as the attempted schema, which of course fails on the databricks side because there is no such thing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;resource "databricks_metastore_assignment" "this" {&lt;BR /&gt;metastore_id = databricks_metastore.acompany_metastore.id&lt;BR /&gt;workspace_id = local.workspace_id&lt;BR /&gt;# System default is "hive_metastore" which is just awful&lt;BR /&gt;default_catalog_name = "gold"&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 16:34:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/670654#M85868</guid>
      <dc:creator>DependentSpace1</dc:creator>
      <dc:date>2023-08-23T16:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: JMP ODBC Databricks and default catalog</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/886912#M104939</link>
      <description>&lt;P&gt;I have a similar issue, I get to connect, but it does not matter if I specify the database name, it will still not show any table and the connection prompt will re-pop up&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 13:56:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/886912#M104939</guid>
      <dc:creator>AlbertLesire1</dc:creator>
      <dc:date>2025-07-15T13:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: JMP ODBC Databricks and default catalog</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/887305#M104943</link>
      <description>&lt;P&gt;This is most likely due to the connection string missing:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Catalog=&amp;lt;catalog-name&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;where &amp;lt;catalog-name&amp;gt; is the catalog where your data is. There are many drivers that do not persist &amp;lt;catalog-name&amp;gt;, so JMP doesn't know there is one.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For instance, in say, Open Database, you'd modify it like (adding the Catalog=&amp;lt;catalog-name&amp;gt;entry):&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open Database(

  "Driver=Simba Spark ODBC Driver;Host=adb-***********.**.azuredatabricks.net;Port=443;HTTPPath=sql/protocolv1/o/*********/****-*******-**********;SSL=1;ThriftTransport=2;AuthMech=3;UID=token;PWD=*****;Catalog=&amp;lt;catalog-name&amp;gt;;Schema=&amp;lt;schema-name&amp;gt;;ProxyHost=***************;ProxyPort=****"

  );
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;For Data Connectors (introduced in JMP 18), you'd add the Catalog=&amp;lt;catalog-name&amp;gt; in the Connection value like:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bryan_boone_0-1752609532747.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78300iA2054BBEF3E0C70C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bryan_boone_0-1752609532747.png" alt="bryan_boone_0-1752609532747.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The other values are probably OK. With a JMP 18 Data Connector, ODBC configurations are obtained from the ODBC Manager and converted to a Data Connector.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 20:01:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/887305#M104943</guid>
      <dc:creator>bryan_boone</dc:creator>
      <dc:date>2025-07-15T20:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: JMP ODBC Databricks and default catalog</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/889446#M105154</link>
      <description>&lt;P&gt;Thank Bryan.&amp;nbsp;&lt;BR /&gt;FYI It got resolved when I installed the Microsoft spark ODBC driver instead of the Simba ODBC driver&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 15:23:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-ODBC-Databricks-and-default-catalog/m-p/889446#M105154</guid>
      <dc:creator>AlbertLesire1</dc:creator>
      <dc:date>2025-07-25T15:23:55Z</dc:date>
    </item>
  </channel>
</rss>

