Catégories :

Fonctions système (Contrôle)

SYSTEM$UNSET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND

Efface la liste des colonnes spécifiées par un appel précédent à SYSTEM$SET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND pour un type d’objet.

Pour plus d’informations, voir Gestion des nouvelles colonnes dans la sortie d’une commande SHOW et les vues Snowflake.

Voir aussi :

SYSTEM$SET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND, SYSTEM$GET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND, SYSTEM$GET_ALL_DEFAULT_COLUMNS_OVERRIDES

Syntaxe

SYSTEM$UNSET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND(
  '<object_type>'
)
Copy

Arguments

'object_type'

Type d’objet pour la commande SHOW. Par exemple, pour la commande SHOW TABLES, spécifiez 'TABLES'. Pour la commande SHOW NOTIFICATION INTEGRATIONS, spécifiez 'NOTIFICATION INTEGRATIONS'.

Renvoie

Renvoie TRUE si l’opération a réussi.

Exigences en matière de contrôle d’accès

Seuls les administrateurs de compte (utilisateurs qui ont reçu le rôle ACCOUNTADMIN) peuvent appeler cette fonction.

Exemples

L’exemple suivant efface la liste des colonnes définie par un appel SYSTEM$SET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND précédent pour la commande SHOW TABLES :

SELECT SYSTEM$UNSET_DEFAULT_COLUMNS_OVERRIDE_FOR_SHOW_COMMAND(
  'TABLES'
);
Copy