```python from bricklayer.catalog.dbricks_catalog import DbricksCatalog for database in DbricksCatalog().get_databases(): for table in database.get_tables(): print(f"{table.sql_name}\t{table.table_provider}") ``` Out: ``` default.weather_version_weather delta ```