Snowflake Basic
snowflake_basicSnowflake is a cloud-based data warehouse offering elastic scaling, secure data sharing, and SQL analytics across multiple cloud environments
Acciones disponibles (6)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Describe tableSNOWFLAKE_BASIC_DESCRIBE_TABLEAcciónRetrieves detailed information for each column (including name, data type, kind, nullability, default value, and key status) in a specified snowflake table.
SNOWFLAKE_BASIC_DESCRIBE_TABLEAcciónRetrieves detailed information for each column (including name, data type, kind, nullability, default value, and key status) in a specified snowflake table.
Parámetros de entrada
databasestringObligatorioThe name of the Snowflake database containing the table.
table_namestringObligatorioThe name of the table to describe.
schema_namestringObligatorioThe name of the schema within the database that contains the table.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Explore ColumnsSNOWFLAKE_BASIC_EXPLORE_COLUMNSAcciónRetrieves a sample of distinct values for specified columns from a snowflake table.
SNOWFLAKE_BASIC_EXPLORE_COLUMNSAcciónRetrieves a sample of distinct values for specified columns from a snowflake table.
Parámetros de entrada
limitintegerThe maximum number of distinct values to return for each specified column.
databasestringObligatorioThe name of the Snowflake database.
table_namestringObligatorioThe name of the table within the specified schema.
schema_namestringObligatorioThe name of the schema within the specified database.
column_namesstring[]A list of specific column names to explore. If left empty, all columns in the table will be explored.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Run QuerySNOWFLAKE_BASIC_RUN_QUERYAcciónExecutes the given sql query in snowflake within the specified database and schema (which must exist and be accessible), automatically setting context first.
SNOWFLAKE_BASIC_RUN_QUERYAcciónExecutes the given sql query in snowflake within the specified database and schema (which must exist and be accessible), automatically setting context first.
Parámetros de entrada
querystringObligatorioSQL query to execute; runs within the context of the specified database and schema.
databasestringObligatorioName of the Snowflake database.
schema_namestringObligatorioName of the schema within the specified database.
Parámetros de salida
dataobject[]A list of dictionaries, where each dictionary represents a row returned by the query. Keys in the dictionaries are column names. For SELECT statements, this contains the query results. For DML/DDL statements or queries that do not return a rowset, this will typically be an empty list.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Show databasesSNOWFLAKE_BASIC_SHOW_DATABASESAcciónRetrieves a list of all databases available in the snowflake account.
SNOWFLAKE_BASIC_SHOW_DATABASESAcciónRetrieves a list of all databases available in the snowflake account.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Show schemasSNOWFLAKE_BASIC_SHOW_SCHEMASAcciónRetrieves a list of all schemas within a specified snowflake database.
SNOWFLAKE_BASIC_SHOW_SCHEMASAcciónRetrieves a list of all schemas within a specified snowflake database.
Parámetros de entrada
databasestringObligatorioThe name of the database for which to list schemas.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Show TablesSNOWFLAKE_BASIC_SHOW_TABLESAcciónRetrieves a list of tables, including their row counts and sizes in bytes, from a specified schema within a snowflake database.
SNOWFLAKE_BASIC_SHOW_TABLESAcciónRetrieves a list of tables, including their row counts and sizes in bytes, from a specified schema within a snowflake database.
Parámetros de entrada
databasestringObligatorioThe name of the database containing the schema from which to list tables.
schema_namestringObligatorioThe name of the schema within the specified database for which to list tables.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not