Where's your data?

Tell us how to reach your SQL Server.

Direct connection
Public IP or VPN
Agent-based
Behind a firewall
Credentials are stored in Google Secret Manager (AES-256). Never logged.
-- Create a dedicated read-only user
CREATE LOGIN datantra_reader
  WITH PASSWORD = '<strong_password>';

USE [YourDatabase];
CREATE USER datantra_reader
  FOR LOGIN datantra_reader;

-- Grant read-only access
ALTER ROLE db_datareader ADD MEMBER datantra_reader;
GRANT VIEW DEFINITION TO datantra_reader;
How it works
1

Install agent in your network

2

Connect outbound over TLS

3

Data flows encrypted end-to-end

Your agent token
dnt_agt_a1b2c3d4e5f6g7h8i9j0
Waiting for agent to connect
Quick install
docker run -d \
  --name datantra-agent \
  --restart always \
  -e AGENT_TOKEN="dnt_agt_a1b2c3d4e5f6g7h8i9j0" \
  -e SQLSERVER_HOST="your-sql-server" \
  gcr.io/datantra/agent:latest
Next: Choose your destination