Microsoft SQL Server / MS SQL (beta)
Follow these steps to connect your Microsoft SQL Server instance to Select Star.
1. Create a Service Account
CREATE LOGIN <username> WITH PASSWORD = '<password>';
CREATE USER <username> FOR LOGIN <username>;
GRANT VIEW DEFINITION TO <username>;For Microsoft SQL Server
-- Run use master and GRANT together,
use master
GRANT VIEW SERVER STATE TO <username>;For Cloud SQL for SQL Server
2. Grant additional permissions for preview access. (optional)
3. Create a new data source in Select Star

4. Enable query logging
5. Choose databases and schemas
Getting Started: Data WarehouseLast updated
Was this helpful?
