<?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 Does Databricks offer something like Oracle's dblink? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11345#M6334</link>
    <description>&lt;P&gt;I am aware, I can load anything into a DataFrame using JDBC, that works well from Oracle sources. Is there an equivalent in Spark SQL, so I can combine datasets as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically something like so - you get the idea...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select
    lt.field1,
    rt.field2
from localTable lt
join remoteTable@serverLink rt
    on rt.id = lt.id&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jan 2023 15:16:21 GMT</pubDate>
    <dc:creator>quakenbush</dc:creator>
    <dc:date>2023-01-18T15:16:21Z</dc:date>
    <item>
      <title>Does Databricks offer something like Oracle's dblink?</title>
      <link>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11345#M6334</link>
      <description>&lt;P&gt;I am aware, I can load anything into a DataFrame using JDBC, that works well from Oracle sources. Is there an equivalent in Spark SQL, so I can combine datasets as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically something like so - you get the idea...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select
    lt.field1,
    rt.field2
from localTable lt
join remoteTable@serverLink rt
    on rt.id = lt.id&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 15:16:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11345#M6334</guid>
      <dc:creator>quakenbush</dc:creator>
      <dc:date>2023-01-18T15:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Does Databricks offer something like Oracle's dblink?</title>
      <link>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11346#M6335</link>
      <description>&lt;P&gt;dblink does not exist.  What you can do is create two table statements with &lt;A href="https://spark.apache.org/docs/latest/sql-ref-syntax-ddl-create-table-datasource.html" alt="https://spark.apache.org/docs/latest/sql-ref-syntax-ddl-create-table-datasource.html" target="_blank"&gt;jdbc sources&lt;/A&gt; and then do a join of the two tables.  It will be a little more to write, but you'll get the correct table in the end.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In python you can maybe do it easier with something like: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;spark.read.jdbc(config1).join(spark.read.jdbc(config2), "key", "type")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 16:00:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11346#M6335</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-18T16:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Does Databricks offer something like Oracle's dblink?</title>
      <link>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11347#M6336</link>
      <description>&lt;P&gt;Here are the methods you can leverage to establish Databricks Connect to Oracle Database seamlessly:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://hevodata.com/learn/databricks-connect-to-oracle-database/#7" alt="https://hevodata.com/learn/databricks-connect-to-oracle-database/#7" target="_blank"&gt;Method 1: Using Hevo Data for Databricks Connect to Oracle Database&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://hevodata.com/learn/databricks-connect-to-oracle-database/#8" alt="https://hevodata.com/learn/databricks-connect-to-oracle-database/#8" target="_blank"&gt;Method 2: Manual Steps for Databricks Connect to Oracle Database&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link: &lt;/P&gt;&lt;P&gt;&lt;A href="https://hevodata.com/learn/databricks-connect-to-oracle-database/#7" target="test_blank"&gt;https://hevodata.com/learn/databricks-connect-to-oracle-database/#7&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 07:36:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11347#M6336</guid>
      <dc:creator>AdrianLobacz</dc:creator>
      <dc:date>2023-01-19T07:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Does Databricks offer something like Oracle's dblink?</title>
      <link>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11348#M6337</link>
      <description>&lt;P&gt;Thanks everyone for helping.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 08:35:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-databricks-offer-something-like-oracle-s-dblink/m-p/11348#M6337</guid>
      <dc:creator>quakenbush</dc:creator>
      <dc:date>2023-01-19T08:35:48Z</dc:date>
    </item>
  </channel>
</rss>

