Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
To access Databricks REST APIs, you must authenticate.
This tutorial shows you how to use the Databricks SQL Statement Execution API 2.0 to run SQL statements from Databricks SQL warehouses.
To view the Databricks SQL Statement Execution API 2.0 reference, see Statement Execution.
Before you begin
Before you start this tutorial, be sure that you have:
Either Databricks CLI version 0.205 or above or
curl, as follows:The Databricks CLI is a command-line tool for sending and receiving Databricks REST API requests and responses. If you use Databricks CLI version 0.205 or above, it must be configured for authenticating with your Azure Databricks workspace. See Install or update the Databricks CLI and Authentication for the Databricks CLI.
For example, to authenticate with Databricks personal access token authentication, follow the steps at Create personal access tokens for workspace users.
And then to use the Databricks CLI to create an Azure Databricks configuration profile for your personal access token, do the following:
Note
The following procedure uses the Databricks CLI to create an Azure Databricks configuration profile with the name
DEFAULT. If you already have aDEFAULTconfiguration profile, this procedure overwrites your existingDEFAULTconfiguration profile.To check whether you already have a
DEFAULTconfiguration profile, and to view this profile's settings if it exists, use the Databricks CLI to run the commanddatabricks auth env --profile DEFAULT.To create a configuration profile with a name other than
DEFAULT, replace theDEFAULTpart of--profile DEFAULTin the followingdatabricks configurecommand with a different name for the configuration profile.Use the Databricks CLI to create an Azure Databricks configuration profile named
DEFAULTthat uses Azure Databricks personal access token authentication. To do this, run the following command:databricks configure --profile DEFAULTFor the prompt Databricks Host, enter your Azure Databricks per-workspace URL, for example
https://adb-1234567890123456.7.azuredatabricks.net.For the prompt Personal Access Token, enter the Azure Databricks personal access token for your workspace.
In this tutorial's Databricks CLI examples, note the following:
- This tutorial assumes that you have an environment variable
DATABRICKS_SQL_WAREHOUSE_IDon your local development machine. This environment variable represents the ID of your Databricks SQL warehouse. This ID is the string of letters and numbers following/sql/1.0/warehouses/in the HTTP path field for your warehouse. To learn how to get your warehouse's HTTP path value, see Get connection details for an Azure Databricks compute resource. - If you use the Windows Command shell instead of a command shell for Unix, Linux, or macOS, replace
\with^, and replace${...}with%...%. - If you use the Windows Command shell instead of a command shell for Unix, Linux, or macOS, in JSON document declarations, replace the opening and closing
'with", and replace inner"with\".
curl is a command-line tool for sending and receiving REST API requests and responses. See also