Export from Google Analytics 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 Google Analytics plugin allows you to sync data from Google Analytics to any destination, including Microsoft SQL Server. It takes only minutes to get started.
Google Analytics
The CloudQuery Google Analytics plugin allows you to run custom Google Analytics Data API v1 reports from Google Analytics and load it into any supported CloudQuery destination
cloudquery
v4.3.6
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 Google Analytics source plugin
You can find more information about the configuration in the plugin documentation
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 googleanalytics.yml mssql.yml