Observação
O acesso a essa página exige autorização. Você pode tentar entrar ou alterar diretórios.
O acesso a essa página exige autorização. Você pode tentar alterar os diretórios.
Aplica-se a:
Databricks SQL
Databricks Runtime 10.4 LTS e superior
somente para o Catálogo do Unity
Define o catálogo atual. Depois que o catálogo atual é definido, identificadores parcialmente e não qualificados para tabelas, funções e exibições referenciadas por SQLs são resolvidos do catálogo atual.
Definir o catálogo também redefine o esquema atual como default.
Sintaxe
{ USE | SET } CATALOG [ catalog_name | ' catalog_name ' ]
Parâmetro
-
Nome do catálogo a ser usado. Se o catálogo não existir, um NO_SUCH_CATALOG_EXCEPTION será gerado.
Exemplos
-- Use the 'hive_metastore' which exists.
> USE CATALOG hive_metastore;
> USE CATALOG 'hive_metastore';
-- Use a catalog given as a string variable
> DECLARE mycat = 'main';
> USE CATALOG IDENTIFIER(mycat);
-- Use the 'some_catalog' which doesn't exist
> USE CATALOG `some_catalog`;
Error: NO_SUCH_CATALOG_EXCEPTION
-- Setting the catalog resets the datbase to `default`
> USE CATALOG some_cat;
> SELECT current_catalog(), current_database();
some_cat default
-- Setting the schema within the curret catalog
> USE DATABASE some_db;
> SELECT current_catalog(), current_database();
some_cat some_db
-- Resetting both catalog and schema
> USE DATABASE main.my_db;
> SELECT current_catalog(), current_database();
main my_db
-- Setting the catalog resets the database to `default` again
> USE CATALOG some_cat;
> SELECT current_catalog(), current_database();
some_cat default