If you want to migrate data from SQL Server 2017, see Migrating data between SQL Server 2017 and Cloud SQL for SQL Server using backup files.
This tutorial is useful if you are a sysadmin, developer, engineer, database admin, or DevOps engineer who wants to migrate data from SQL Server 2008 to Cloud SQL for SQL Server 2017 or who wants to upgrade from SQL Server 2008 to SQL Server 2017.
The tutorial assumes that you have a license for SQL Server 2008 and that you're familiar with the following:
- Microsoft SQL Server 2008
- Microsoft SQL Server 2017
- Microsoft PowerShell
- Cloud Storage
- Cloud SQL
Creating the Cloud SQL instance and Cloud Storage bucket
In Cloud Shell, create the Cloud SQL for SQL Server 2017 Enterprise instance that you later migrate the database to:
gcloud beta sql instances create target \ --database-version=SQLSERVER_2017_ENTERPRISE \ --cpu=2 \ --memory=5GB \ --root-password=sqlserver12@ \ --zone=us-central1-f
It can take a few minutes to create the instance. The default root username is
sqlserver
with a default password ofsqlserver12@
. For this tutorial, you create the instance in theus-central1-f
zone. For more information about zones, see Cloud locations.Create a Cloud Storage bucket to store the backup file before the data is imported into Cloud SQL:
gcloud storage buckets create "gs://bucket-name" --location=US
Replace
bucket-name
with a unique name for the Cloud Storage bucket.
Backing up your database
In this section, you connect to your Windows server running SQL Server 2008, create a backup of your database, and upload the backup database to Cloud Storage.
Connect to your Windows server running SQL Server 2008 by using RDP. It can be the primary or a replica server.
Launch the PowerShell command-line tool.
In the terminal where you installed the gcloud CLI, create a backup folder:
mkdir c:\backup
Create a backup of the database in the backup folder:
osql -E -Q "BACKUP DATABASE db-name TO DISK='c:\backup\db-name.bak'"
Replace
db-name
with the name of the database that you want to migrate to Cloud SQL.Copy the backup file to the Cloud Storage bucket:
$PROJECT_ID = (gcloud sql instances describe target --format='value(project)' ) gcloud storage cp c:\backup\db-name.bak gs://bucket-name --no-clobber
Importing the backup file to Cloud SQL
In Cloud Shell, retrieve the service account that's associated with the Cloud SQL instance and save it in a variable:
SVC_EMAIL_ADDRESS=$(gcloud sql instances describe target \ --format='value(serviceAccountEmailAddress)') echo $SVC_EMAIL_ADDRESS
Google Cloud creates a service account when you created the Cloud SQL instance. You use the service account to give the Cloud SQL instance permission to access the resources it needs.
Give the service account permission to write to the Cloud Storage bucket:
gcloud storage buckets add-iam-policy-binding gs://bucket-name \ --member=serviceAccount:${SVC_EMAIL_ADDRESS} \ --role=roles/storage.legacyBucketWriter
Give the service account permission to read files in the Cloud Storage bucket:
gcloud storage buckets add-iam-policy-binding gs://bucket-name \ --member=serviceAccount:${SVC_EMAIL_ADDRESS} \ --role=roles/storage.legacyObjectReader
Import the backup file to the Cloud SQL database:
gcloud beta sql import bak target \ gs://bucket-namedb-name.bak \ --database db-name
Validating the data import
In this section, you check that the data was successfully imported.
In Cloud Shell, install the SQL Server toolkit:
sudo apt-get install -y mssql-tools
If you accept the license terms, enter
yes
when you're prompted.To securely access your Cloud SQL instance, download the Cloud SQL proxy:
wget https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 -O cloud_sql_proxy
Start the Cloud SQL proxy:
CONNECTION_NAME=$(gcloud sql instances describe target --format='value(connectionName)') ./cloud_sql_proxy -instances=${CONNECTION_NAME}=tcp:1433 &
Run a query to validate the data in one or more of the tables:
/opt/mssql-tools/bin/sqlcmd -U sqlserver -S 127.0.0.1 -Q "query-string"
Replace
query-string
with the SQL query that you want to run.When you're prompted, enter the
sqlserver12@
password.