Microsoft SQL Server - Execute Query
Overviewβ
Execute any SQL query against a Microsoft SQL Server database, without returning any of the resulting data. This Blueprint should primarily be used for queries that perform functionality other than SELECT, like multi-step SQL jobs, or DML statements.
Variablesβ
Name | Reference | Type | Required | Default | Options | Description |
---|---|---|---|---|---|---|
Host | MSSQL_HOST | Alphanumeric | β | - | - | The domain or the IP address of the database you want to connect to. |
Port | MSSQL_PORT | Integer | β | "1433" | - | Number for the database port to connect to. Defaults to 1433. |
Username | MSSQL_USERNAME | Alphanumeric | β | - | - | Name of the user to connect to the database with. |
Password | MSSQL_PASSWORD | Password | β | - | - | Password associated to the provided username. |
Database | MSSQL_DATABASE | Alphanumeric | β | - | - | Name of the database in the Microsoft SQL Server to connect to. |
Extra URL Parameters | MSSQL_URL_PARAMETERS | Alphanumeric | β | - | - | Extra parameters that will be placed at the end of the connection string, after the "?". Must be separated by "&" |
Query | MSSQL_QUERY | Alphanumeric | β | - | - | Any SQL query that runs a job against the database (CREATE, DROP, INSERT, etc.). Formatting is ignored. |
YAMLβ
Below is the YAML template for this Blueprint and can be used in the Fleet YAML Editor.
source:
blueprint: Microsoft SQL Server - Execute Query
inputs:
MSSQL_HOST: null ## REQUIRED
MSSQL_PORT: '1433' ## REQUIRED
MSSQL_USERNAME: null ## REQUIRED
MSSQL_PASSWORD: null
MSSQL_DATABASE: null ## REQUIRED
MSSQL_URL_PARAMETERS: null
MSSQL_QUERY: null ## REQUIRED
type: BLUEPRINT
guardrails:
retry_count: 1
retry_wait: 0h0m0s
runtime_cutoff: 1h0m0s
exclude_exit_code_ranges:
- '101'
- '102'
- '103'
- '200'
- '205'
- '249'