execute_sql_nonblocking
Initiate SQL statement execution on Databricks and receive a statement ID immediately, enabling asynchronous processing without waiting for query completion.
Instructions
Start SQL statement execution and return immediately with statement_id (non-blocking)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
catalog | No | ||
schema_name | No | ||
statement | Yes | ||
warehouse_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"catalog": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Catalog"
},
"schema_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Schema Name"
},
"statement": {
"title": "Statement",
"type": "string"
},
"warehouse_id": {
"title": "Warehouse Id",
"type": "string"
}
},
"required": [
"statement",
"warehouse_id"
],
"title": "execute_sql_nonblockingArguments",
"type": "object"
}