cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Cannot Create Table under catalog.schema

Kumaril_02
New Contributor
AnalysisException: [RequestId=75cd00bc-7274-48c5-bdb2-c86a05de227f ErrorClass=TABLE_DOES_NOT_EXIST.RESOURCE_DOES_NOT_EXIST] Table '643a51ba-70c9-41ac-b75d-9c0f9039e7c1' does not exist.
 
I am getting this issue while creating the table under the catalog.schema, i had given blob data reader,contributor access on the storage and the container, even i have given all kinds of privileges to catalog and schema. Still the issue persists.
1 REPLY 1

Brahmareddy
Esteemed Contributor

Hi Kumaril_02,

How are you doing today?, As per my understanding, It looks like the error you're getting—saying the table with a long ID doesn’t exist—is probably happening because Databricks is trying to reference a table using its internal ID rather than its actual name. This can happen if the table was dropped, renamed, or if there’s some stale metadata from a previous run. Since you’ve already set up all the necessary storage permissions and granted the right privileges on the catalog and schema, the issue is likely not with access but with how the table is being referenced. Try running REFRESH CATALOG and REFRESH SCHEMA to clear any old references, and make sure you’re using the correct table name like catalog.schema.table_name. Also, if the table used to exist and was deleted, try creating it again with a new name just to rule out any metadata issues. Let me know if you want help checking the exact command you’re using—happy to walk through it with you!

Regards,

Brahma