Ir para o conteúdo
ou

Software livre Brasil

0 amigos

Nenhum(a)

0 comunidades

Nenhum(a)

 Voltar a Blog
Tela cheia

Deleting all user-defined functions (UDFs) in Snowflake

21 de Julho de 2020, 0:00 , por - 0sem comentários ainda | Ninguém está seguindo este artigo ainda.
Visualizado 0 vezes

To drop user-defined functions (UDF) in Snowflake, we need the function name and list of parameters. Depending on how many UDFs you have, this can become boring quickly.

Instead of going one by one, run the SQL command below:

SHOW USER FUNCTIONS IN ACCOUNT;
SELECT
  CONCAT(
    'DROP FUNCTION ',
    "catalog_name",
    '.',
    "schema_name",
    '.',
    REGEXP_REPLACE("arguments", ' RETURN .*$', ''),
    ';'
  ) AS drop_command
FROM TABLE(RESULT_SCAN(LAST_QUERY_ID()))

This will return a table like:

DROP_COMMAND
DROP FUNCTION MY_DATABASE.PUBLIC.MY_UDF_1(VARCHAR);
DROP FUNCTION MY_DATABASE.OTHER_SCHEMA.MY_UDF_2(ARRAY, ARRAY);
DROP FUNCTION OTHER_DATABASE.PUBLIC.MY_UDF_3(VARIANT);

Now you just need to review these results and run them. If you want to delete UDFs from a single database or schema, add a WHERE filter on "catalog_name" (for the database) and/or "schema_name" for the schema.


Fonte: https://vitorbaptista.com/deleting-all-udfs-in-snowflake

0sem comentários ainda

Enviar um comentário

Os campos são obrigatórios.

Se você é um usuário registrado, pode se identificar e ser reconhecido automaticamente.