Export from Render to Microsoft SQL Server
CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.
The CloudQuery Render plugin allows you to sync data from Render to any destination, including Microsoft SQL Server. It takes only minutes to get started.
Render
The CloudQuery Render plugin extracts information from your Render API and loads it into any supported CloudQuery destination
cloudquery
v1.6.5
Source
Microsoft SQL Server
This destination plugin lets you sync data from a CloudQuery source to a Microsoft SQL Server compatible database. This includes both Microsoft SQL Server and Azure SQL Server.
Table of Contents
MacOS Setup
Step 1. Install CloudQuery
brew install cloudquery/tap/cloudquery
Step 2. Log in to CloudQuery CLI
cloudquery login
Step 3. Configure Render source plugin
You can find more information about the configuration in the plugin documentation
kind: source
# Common source-plugin configuration
spec:
name: render
path: cloudquery/render
registry: cloudquery
version: "v1.6.5"
tables: ["*"]
destinations: ["v4.7.6"]
# Plugin specific configuration
spec:
token: ${API_KEY} # required
Step 4. Configure Microsoft SQL Server destination plugin
You can find more information about the configuration in the plugin documentation
kind: destination
spec:
name: "mssql"
path: "cloudquery/mssql"
registry: "cloudquery"
version: "v4.7.6"
spec:
# Connection string in the format `server=localhost;user id=SA;password=yourStrongP@ssword;port=1433;database=cloudquery;`
connection_string: "${MSSQL_CONNECTION_STRING}"
# Optional parameters:
# auth_mode: ms
# schema: dbo
# batch_size: 1000 # 1K entries
# batch_size_bytes: 5242880 # 5 MiB
# batch_timeout: 20s
Step 5. Run Sync
cloudquery sync render.yml mssql.yml