In Synapse Analytics I can write the following SQL script and it works fine:
SELECT Table_name FROM dataverse_blob_blob.information_schema.tables WHERE Table_name NOT LIKE '%_partitioned' ORDER BY 1
I am trying to do the same using a Notebook:
%%sql
SELECT Table_name FROM `dataverse_blob_blob`.`information_schema`.`tables`
And it throws the error: Error: spark_catalog requires a single-part namespace, but got [dataverse_blob_blob, information_schema]
Tried using USE CATALOG and USE SCHEMA to set the catalog/schema but that throws an error too.