cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Get Started Discussions
Start your journey with Databricks by joining discussions on getting started guides, tutorials, and introductory topics. Connect with beginners and experts alike to kickstart your Databricks experience.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Data import.

GRV
New Contributor II

i am using the databricks free edition and when i am importing a csv file i am not able to access that csv file in using spark commands(when i am creating a dataframe) it says "Public DBFS root is disabled." and i can't find any "data" tab in my side bar, even after importing inside my not book i cannot access it.

2 REPLIES 2

ilir_nuredini
Honored Contributor

Hello @GRV 

Regarding DBFS, there is no official update on enabling full access in the Free Edition. Also, DBFS is now considered a legacy approach, and you would need to use Unity Catalog Volumes for storing and accessing data going forward is recommended.

Example upload to UC Volume:

1. Go to the catalog you wanna have the data in, and click create Volume

ilir_nuredini_0-1750936380623.png

2. Give it a name and click create:

ilir_nuredini_1-1750936426504.png

3. Then use the "Upload to this volume" button to upload the data:

ilir_nuredini_2-1750936469941.png


4. Here it is an example how to read a csv file from Volume:

df = spark.read.csv("/Volumes/main/finance/reports/monthly/may2025.csv", header=True, inferSchema=True)
df.show()

Hope that helps. Best, Ilir

They stopped most of the features in community version, I think its better to use trial version , so that atleast we can use some of the features.

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now