<?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: using remote_query with SQL Serverless Warehouse in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/169002#M56021</link>
    <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/257010"&gt;@dsay96&lt;/a&gt;&amp;nbsp;You can use interactive compute or try to replace the private CA cert with a public CA cert on the IBM server. If the server presents a certificate from a recognized public CA (DigiCert etc), the serverless runtime's default ca certs truststore may validate it automatically and hence no custom truststore may be needed.&lt;/P&gt;</description>
    <pubDate>Thu, 17 Sep 2026 14:53:33 GMT</pubDate>
    <dc:creator>balajij8</dc:creator>
    <dc:date>2026-09-17T14:53:33Z</dc:date>
    <item>
      <title>using remote_query with SQL Serverless Warehouse</title>
      <link>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168937#M56010</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im trying to set up remote_query() as an option for our developers to use when querying our DB2 server. Unfortunately the connection keeps timing out. The workspace is in a VPC in AWS and the interactive clusters can successfully use the JDBC connection from Unity Catalog to access tables in the DB2. For serverless we set up and established an NCC private endpoint rule, an AWS PrivateLink endpoint, AWS NLB, and a target group. All elements of the networking part are healthy and accepted. What I think is the issue would be that there is no way to pass the TSL certs in the handshake between dbx warehouse and db2 server. Has anyone gotten this flow working before?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 11:28:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168937#M56010</guid>
      <dc:creator>dsay96</dc:creator>
      <dc:date>2026-09-17T11:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: using remote_query with SQL Serverless Warehouse</title>
      <link>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168982#M56016</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/257010"&gt;@dsay96&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try these steps&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Troubleshooting &amp;amp; Resolution Steps&lt;BR /&gt;1. Pass DB2 SSL Parameters directly in the Unity Catalog JDBC Connection&lt;BR /&gt;Within the Unity Catalog Connection definition you're using within remote_query(), pass the JDBC URL or options for explicit SSL properties:&lt;/P&gt;&lt;P&gt;Option A: Explicit CA Certificate (Recommended)&lt;BR /&gt;Pass the CA certificate file path (if uploaded to a UC Volume) or embed the truststore parameters in the Connection Options:&lt;/P&gt;&lt;P&gt;Plaintext&lt;BR /&gt;sslConnection=true;sslTrustStoreLocation=/Volumes/main/default/jars/db2_truststore.jks;sslTrustStorePassword=your_password;&lt;BR /&gt;(Make sure the SQL Warehouse's service principal / users have READ VOLUME access to the UC Volume containing the .jks or .pem file).&lt;/P&gt;&lt;P&gt;Option B: Test with Unverified SSL (Isolation Test)&lt;BR /&gt;To see if the TLS is actually causing the timeout, temporarily relax certificate validation in your UC Connection string properties:&lt;/P&gt;&lt;P&gt;Plaintext&lt;BR /&gt;sslConnection=true;sslTrustStoreLocation=null;&lt;BR /&gt;(Or setting the driver property: sslConnection=true with trustServerCertificate properties depending on your specific DB2 JDBC driver version.&lt;/P&gt;&lt;P&gt;2. Validate PrivateLink Port &amp;amp; Target Group routing&lt;BR /&gt;Since Serverless will be using your Network Connectivity Config (NCC) Private Endpoint Rule:&lt;/P&gt;&lt;P&gt;DB2 typically uses port 50000 (non-SSL) and 50001 (SSL). Ensure your AWS NLB listener and Target Group are explicitly listening on the SSL port (e.g., 50001) and forwarding to the correct DB2 port.&lt;/P&gt;&lt;P&gt;Check that the Security Group attached to the AWS NLB explicitly allows ingress traffic from the Serverless Subnet CIDR assigned to your Databricks NCC endpoint.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 12:52:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168982#M56016</guid>
      <dc:creator>Satyasai</dc:creator>
      <dc:date>2026-09-17T12:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: using remote_query with SQL Serverless Warehouse</title>
      <link>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168986#M56018</link>
      <description>&lt;P&gt;For generic Unity Catalog JDBC connections on Serverless SQL, can the isolated JDBC environment use a custom JKS truststore supplied through a Unity Catalog Volume? The documentation currently states that SSL certificates are not supported. We use JTOpen/JT400 and need a private CA certificate to connect to IBM i over TLS port 9471.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 13:12:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168986#M56018</guid>
      <dc:creator>dsay96</dc:creator>
      <dc:date>2026-09-17T13:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: using remote_query with SQL Serverless Warehouse</title>
      <link>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168987#M56019</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/250064"&gt;@Satyasai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 13:14:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/168987#M56019</guid>
      <dc:creator>dsay96</dc:creator>
      <dc:date>2026-09-17T13:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: using remote_query with SQL Serverless Warehouse</title>
      <link>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/169002#M56021</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/257010"&gt;@dsay96&lt;/a&gt;&amp;nbsp;You can use interactive compute or try to replace the private CA cert with a public CA cert on the IBM server. If the server presents a certificate from a recognized public CA (DigiCert etc), the serverless runtime's default ca certs truststore may validate it automatically and hence no custom truststore may be needed.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 14:53:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-remote-query-with-sql-serverless-warehouse/m-p/169002#M56021</guid>
      <dc:creator>balajij8</dc:creator>
      <dc:date>2026-09-17T14:53:33Z</dc:date>
    </item>
  </channel>
</rss>

