statement_execution_results
Operations on a statement_execution_results
resource.
Overview
Name | statement_execution_results |
Type | Resource |
Id | databricks_workspace.dbsql.statement_execution_results |
Fields
Name | Datatype |
---|---|
chunk_index | integer |
data_array | array |
next_chunk_index | integer |
next_chunk_internal_link | string |
row_count | integer |
row_offset | integer |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
getstatementresultchunkn | SELECT | chunk_index, statement_id, deployment_name | After the statement execution has |
SELECT
examples
SELECT
chunk_index,
data_array,
next_chunk_index,
next_chunk_internal_link,
row_count,
row_offset
FROM databricks_workspace.dbsql.statement_execution_results
WHERE chunk_index = '{{ chunk_index }}' AND
statement_id = '{{ statement_id }}' AND
deployment_name = '{{ deployment_name }}';