Skip to main content

Microsoft SQL Server - Download Query Results to Shipyard

Overview​

Turn the results of your SQL SELECT statement into a CSV file. Extract your Microsoft SQL Server data into files for easier delivery to clients and partners.

Variables​

NameReferenceTypeRequiredDefaultOptionsDescription
HostMSSQL_HOSTAlphanumericβœ…--The domain or the IP address of the database you want to connect to.
PortMSSQL_PORTIntegerβœ…"1433"-Number for the database port to connect to. Defaults to 1433.
UsernameMSSQL_USERNAMEAlphanumericβœ…--Name of the user to connect to the database with.
PasswordMSSQL_PASSWORDPasswordβž–--Password associated to the provided username.
DatabaseMSSQL_DATABASEAlphanumericβœ…--Name of the database in the Microsoft SQL Server to connect to.
Extra URL ParametersMSSQL_URL_PARAMETERSAlphanumericβž–--Extra parameters that will be placed at the end of the connection string, after the "?". Must be separated by "&"
QueryMSSQL_QUERYAlphanumericβœ…--A SELECT statement that returns data. Formatting is ignored.
Shipyard Folder NameMSSQL_DESTINATION_FOLDER_NAMEAlphanumericβž–--The folder structure that you want your CSV to be created in. If left blank, the file will be created in the home directory.
Shipyard File NameMSSQL_DESTINATION_FILE_NAMEAlphanumericβœ…output.csv-The file name that you want your generated CSV to have.
Include Column Names as Header?MSSQL_FILE_HEADERBooleanβœ…TRUE-If checked, your CSV file will include a header row with column names.

YAML​

Below is the YAML template for this Blueprint and can be used in the Fleet YAML Editor.

source:
blueprint: Microsoft SQL Server - Download Query Results to Shipyard
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
MSSQL_DESTINATION_FOLDER_NAME: null
MSSQL_DESTINATION_FILE_NAME: output.csv ## REQUIRED
MSSQL_FILE_HEADER: 'TRUE' ## REQUIRED
type: BLUEPRINT
guardrails:
retry_count: 1
retry_wait: 0h0m0s
runtime_cutoff: 1h0m0s
exclude_exit_code_ranges:
- '101'
- '102'
- '103'
- '200'
- '205'
- '249'