snowflake.snowpark.Session.call¶
- Session.call(sproc_name: str, *args: Any, statement_params: Dict[str, Any] | None = None) Any[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/session.py#L1837-L1871)¶
Calls a stored procedure by name.
- Parameters:
sproc_name – The name of stored procedure in Snowflake.
args – Arguments should be basic Python types.
statement_params – Dictionary of statement level parameters to be set while executing this action.
Example: