<?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: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32176#M23445</link>
    <description>&lt;P&gt;Hi @Kaniz Fatma​, Thanks for this. I don't think this is a viable solution. The .accdb file is in databricks and needs to be read while sitting in databricks. I am unable to use outside programs due to security.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jan 2022 17:01:35 GMT</pubDate>
    <dc:creator>Leladams</dc:creator>
    <dc:date>2022-01-10T17:01:35Z</dc:date>
    <item>
      <title>What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32173#M23442</link>
      <description>&lt;P&gt;I am currently trying to read in .accdb files from a mounted drive. Based on my research it looks like I would have to use a package like JayDeBeApi with ucanaccess drivers or pyodbc with ms access drivers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will this work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 17:33:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32173#M23442</guid>
      <dc:creator>Leladams</dc:creator>
      <dc:date>2022-01-06T17:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32176#M23445</link>
      <description>&lt;P&gt;Hi @Kaniz Fatma​, Thanks for this. I don't think this is a viable solution. The .accdb file is in databricks and needs to be read while sitting in databricks. I am unable to use outside programs due to security.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 17:01:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32176#M23445</guid>
      <dc:creator>Leladams</dc:creator>
      <dc:date>2022-01-10T17:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32177#M23446</link>
      <description>&lt;P&gt;The below code presents the error:&lt;/P&gt;&lt;P&gt;net.ucanaccess.jdbc.UcanaccessSQLException: UCAExc:::5.0.1 given file does not exist:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;import jaydebeapi, jpype
&amp;nbsp;
connectionProperties = {
  "driver" : "net.ucanaccess.jdbc.UcanaccessDriver"
}
&amp;nbsp;
url = "jdbc:ucanaccess://dbfs/FileStore/tables/ASampleDatabase.accdb"
df = spark.read.jdbc(url=url, table="Asset Items", properties=connectionProperties)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This code presents the error: &lt;/P&gt;&lt;P&gt;TypeError: Class net.ucanaccess.jdbc.UcanaccessDriver is not found&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;import  jaydebeapi, jpype
&amp;nbsp;
# Initiate Java runtiome file location 
&amp;nbsp;
ucanaccess_jars = [
        "dbfs:/FileStore/jars/UCanAccess-5.0.1.bin/ucanaccess_5_0_1.jar",
        "dbfs:/FileStore/jars/UCanAccess-5.0.1.bin/lib/commons_lang3_3_8_1.jar",
        "dbfs:/FileStore/jars/UCanAccess-5.0.1.bin/lib/commons_logging_1_2.jar",
        "dbfs:/FileStore/jars/UCanAccess-5.0.1.bin/lib/hsqldb_2_5_0.jar",
        "dbfs:/FileStore/jars/UCanAccess-5.0.1.bin/lib/jackcess_3_0_1.jar",
        ]
&amp;nbsp;
# classpath = $PATH$ parameters for Java runtime file location
&amp;nbsp;
classpath = ":".join(ucanaccess_jars)
&amp;nbsp;
# Initate connection to MS Access files
cnxn = jaydebeapi.connect(
    "net.ucanaccess.jdbc.UcanaccessDriver",
    "jdbc:ucanaccess:///FileStore/tables/ASampleDatabase.accdb",#.accdb file
  
    ["", ""],
    classpath
    )
&amp;nbsp;
# From connection initiate cursor
crsr = cnxn.cursor()
&amp;nbsp;
# Run Query
crsr.execute("SELECT * FROM 'Asset Items'")
&amp;nbsp;
# Fetch Query result
for row in crsr.fetchall():
    print(row)
&amp;nbsp;
# Close cursor
crsr.close()
# Close connection
cnxn.close()&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regarding the file path I have tried 3 slashes, 2 slashes. with colon without colon. I think I have tried every possible combination for the filepath with no success.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 19:19:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32177#M23446</guid>
      <dc:creator>Leladams</dc:creator>
      <dc:date>2022-01-14T19:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32178#M23447</link>
      <description>&lt;P&gt;@Leland Adams​&amp;nbsp;- Thank you for the extra information. &lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 21:05:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32178#M23447</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-14T21:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32180#M23449</link>
      <description>&lt;P&gt;Hi @Leland Adams​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you are doing well. Thank you for posting your question and giving us additional information. Do you think you were able to solve the query?&lt;/P&gt;&lt;P&gt;We'd love to hear from you.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 14:46:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32180#M23449</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-13T14:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32181#M23450</link>
      <description>&lt;P&gt;HI I tried setting all the classpath still I am getting the same error. Please find the attached screenshots for the same. &lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 03:12:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32181#M23450</guid>
      <dc:creator>Dhara</dc:creator>
      <dc:date>2022-06-29T03:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32182#M23451</link>
      <description />
      <pubDate>Wed, 29 Jun 2022 03:13:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32182#M23451</guid>
      <dc:creator>Dhara</dc:creator>
      <dc:date>2022-06-29T03:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32183#M23452</link>
      <description>&lt;P&gt;I am still having difficulty in accessing the mdb files and I have responded back too. &lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 03:13:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32183#M23452</guid>
      <dc:creator>Dhara</dc:creator>
      <dc:date>2022-06-29T03:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32184#M23453</link>
      <description>&lt;P&gt;I am still unable to solve the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 13:33:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32184#M23453</guid>
      <dc:creator>Leladams</dc:creator>
      <dc:date>2022-06-29T13:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32185#M23454</link>
      <description>&lt;P&gt;I had tried every possible iteration of classpath to no success.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 13:36:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/32185#M23454</guid>
      <dc:creator>Leladams</dc:creator>
      <dc:date>2022-06-29T13:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to read in a ms access .accdb database into Databricks from a mounted drive</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/135580#M50385</link>
      <description>&lt;P&gt;Hi, any chance you were able to read .accdb files? I am also trying to read those files in Databricks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 20:36:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-the-best-way-to-read-in-a-ms-access-accdb-database-into/m-p/135580#M50385</guid>
      <dc:creator>malhardhawle</dc:creator>
      <dc:date>2025-10-21T20:36:51Z</dc:date>
    </item>
  </channel>
</rss>

