Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2022 07:40 AM
@Dhara Mandal Can you please try below?
# cmd 1
%pip instal pandas_access
# cmd 2
import pandas_access as mdb
db_filename = '/dbfs/FileStore/Campaign_Template.mdb'
# Listing the tables.
for tbl in mdb.list_tables(db_filename):
print(tbl)
# Read a small table.
df = mdb.read_table(db_filename, "Campaign_Table")
df.head()
This article has some examples