英文:
databricks notebook to show schemas in a certain catalog
问题
我知道在Databricks笔记本中,我们可以使用spark.sql("show schemas")
来获取hive_metastore中的模式。由于引入了Unity目录,我想知道如何显示指定Unity目录中的模式?
祝一切顺利!
英文:
I know that in the databricks notebook, we can use spark.sql("show schemas")
to get the schemas in the hive_metastore. Since the unity catalog is introduced, I am wondering how to show the schemas in a specified unity catalog?
Best wishes
答案1
得分: 0
由于某些原因,文档中没有记录,但在Databricks SQL和DBR 12.2中可以使用以下代码:
show schemas in catalog_name
英文:
For some reasons it's not documented in documentation, but it works in Databricks SQL & in DBR 12.2:
show schemas in catalog_name
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论