cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Get Started Discussions
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Error not a delta table for Unity Catalog table

Stogpon
New Contributor III

Is anyone able to advise why I am getting the error not a delta table?  The table was created in Unity Catalog.  I've also tried DeltaTable.forName and also using 13.3 LTS and 14.3 LTS clusters. Any advice would be much appreciatedScreenshot 2024-03-18 at 12.10.30โ€ฏPM.png

 

Screenshot 2024-03-18 at 12.14.24โ€ฏPM.png

1 ACCEPTED SOLUTION

Accepted Solutions

addy
New Contributor III

@StogponI believe if you are using DeltaTable.forPath then you have to pass the path where the table is. You can get this path from the Catalog. It is available in the details tab of the table.

Example:
delta_table_path = "dbfs:/user/hive/warehouse/xyz"

# Read the Delta table using forPath
deltaTable = DeltaTable.forPath(spark, delta_table_path)

The other way would be to use would be DeltaTable.forName(spark, 'tablename')

Hopefully this helps.

View solution in original post

4 REPLIES 4

Kaniz
Community Manager
Community Manager

Hi @Stogpon, Could you please paste the error stack here?

 

Stogpon
New Contributor III

@Kaniz the attached screen was using 14.3 LTS cluster.  ThanksScreenshot 2024-03-18 at 7.51.14โ€ฏPM.png

addy
New Contributor III

@StogponI believe if you are using DeltaTable.forPath then you have to pass the path where the table is. You can get this path from the Catalog. It is available in the details tab of the table.

Example:
delta_table_path = "dbfs:/user/hive/warehouse/xyz"

# Read the Delta table using forPath
deltaTable = DeltaTable.forPath(spark, delta_table_path)

The other way would be to use would be DeltaTable.forName(spark, 'tablename')

Hopefully this helps.

Stogpon
New Contributor III

@addy thanks for your reply.  I tried with forName and it's now working.  I had tried this both forName and forPath previously with the same error so I'm not sure why it's working now.  I can't recall what has changed since whilst I was experimenting/diagnosing.  If I experience it again I'll have to take closer notes of the steps I took to reach that step.  Anyhow thanks for your help, it's much appreciated.   

Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.