saurabh18cs
Honored Contributor III

Hi @new_user_ptl Databricks does NOT support directly registering or querying Iceberg tables that use the Hadoop catalog (where metadata is stored only as files in S3 and not registered in any metastore/catalog). when use databricks sql , registering table require the table to be discoverable via catalog glue or hive etc but with hadoop catalog it is just s3 files.

You can still try readng the data using Spark directly (not via SQL), for example

spark.read.format("iceberg").load("s3://bucket/path")