← All stories
● Covered by 1 source · 1 reportLow impact1 neutral

Migrating SQL Server Logins and Users to Google Cloud SQL After DMS Replication

🔄 Updated 57m ago
New to BrevFeed? We gather this story from every outlet covering it into one summary — ranked by real-world impact, not just the latest headline — so you never miss what matters. What is BrevFeed? →

Key points

  • DMS replicates database schemas and transactional data, not instance-level objects.
  • Server logins and permissions are not automatically migrated by DMS.
  • This design ensures security isolation and compliance.
  • Manual migration of security objects is required post-DMS replication.

The Challenge of Database Migration

When migrating SQL Server databases to Google Cloud SQL using the Database Migration Service (DMS), applications may fail to connect to the new Cloud SQL instance even after data replication is complete. This issue arises because DMS specifically excludes instance-level objects, such as server logins and permissions, from its migration process.

Why DMS Excludes Security Objects

The exclusion of server logins and permissions by DMS is a deliberate security measure. It prevents potential privilege escalation, as source environments and Cloud SQL operate under different security models. Directly replicating master system databases could grant unauthorized sysadmin access in the managed cloud environment.

This approach also supports compliance and audit governance by requiring explicit administrator oversight for migrating encrypted password hashes and server-level credentials. This ensures that only approved identities are provisioned in the cloud, adhering to frameworks like PCI-DSS or SOC 2. Additionally, it provides an opportunity for organizations to modernize and prune stale credentials during the cloud migration process.

Bridging the Migration Gap

To address the missing logins and users, administrators must manually migrate these security objects. This process involves using standard, time-tested SQL Server tools to transfer the necessary logins and user permissions to the new Cloud SQL for SQL Server instance. This ensures that applications can successfully authenticate and connect to the migrated databases.

✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →

The daily brief

One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.

One email a day. Unsubscribe in one click, any time.

Today's brief

Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.

~22 min · 18 stories · Sep 09

▶ Play today's brief Listen on Spotify

New every morning, and the back catalogue is archived by date.

Reporting from

Google Cloud's Database Migration Service (DMS) for SQL Server does not automatically migrate instance-level objects like server logins and permissions, which can cause application connection failures post-migration. This design choice prioritizes security, compliance, and identity modernization. Organizations must manually migrate these security objects using standard SQL Server tools to ensure proper access to Cloud SQL instances.