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 databasesRun the following command to verify if your destination Cloud SQL for SQL Server contains all the source databases you wanted to migrate: EXEC sp_databases; GO List all tables in a databaseRun the following commands to check if your migrated database contains all the necessary tables: - Start using a specific database:
USE DATABASE_NAME; GO 
- List all tables in the database:
SELECT * FROM information_schema.tables; 
 Check table content and definitionsRun the following commands to verify the correctness of a specific migrated table: - Start using a specific database:
USE DATABASE_NAME; GO 
- View the table definition:
EXEC sp_help 'dbo.TABLE_NAME'; 
- Verify the table contents:
SELECT * FROM TABLE_NAME'; GO 
 
- Start using a specific database: