Stay organized with collections
Save and categorize content based on your preferences.
This page describes how to confirm that your migrated data is complete and
accurate. At a minimum, you should verify that your tables exist in the
migrated Cloud SQL for SQL Server databases instance.
Connect to your Cloud SQL for SQL Server instance with a tool where you can
run SQL commands against your migrated databases.
For more information on connecting to Cloud SQL instances, see
Connection options
in Cloud SQL documentation.
Run SQL commands to verify your migrated data. For example:
List all databases
Run the following command to verify if your destination Cloud SQL for SQL Server
contains all the source databases you wanted to migrate:
EXECsp_databases;GO
List all tables in a database
Run the following commands to check if your migrated database
contains all the necessary tables:
Start using a specific database:
USEDATABASE_NAME;GO
List all tables in the database:
SELECT*FROMinformation_schema.tables;
Check table content and definitions
Run the following commands to verify the correctness of a specific
migrated table:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-03 UTC."],[[["This guide helps verify the completeness and accuracy of migrated data in Cloud SQL for SQL Server."],["You can connect to your Cloud SQL instance using tools capable of running SQL commands."],["Use the `EXEC sp_databases;` command to confirm that all intended databases have been migrated."],["Utilize `USE DATABASE_NAME;` and `SELECT * FROM information_schema.tables;` to verify the presence of all required tables within a specific database."],["Check table definitions with `EXEC sp_help 'dbo.TABLE_NAME';` and verify table contents using `SELECT * FROM TABLE_NAME;` to ensure the correctness of migrated tables."]]],[]]