Jump to Content
Databases

Using the local timezone with Cloud SQL for SQL Server

March 31, 2022
Rishi Kapoor

Customer Engineer, Cloud Sales

Rahul Deshmukh

Product Manager, Google Cloud

If you want to use your local timezone for your database running on Cloud SQL for SQL Server, then this blog is for you. 

Cloud SQL is a fully managed relational database service for Microsoft SQL Server, MySQL and PostgreSQL. With Cloud SQL, you can run the same relational databases you know with their rich extension collections, configuration flags, and developer ecosystem, but without the hassle of self management.

As a managed database service, Cloud SQL can remove a significant operational overhead in securing, patching, and maintaining a SQL Server instance. One of the ways that it helps ensure the instance stability and reliability is by reducing the control surface to the user. As a DBA or developer, this can be a new way of working if you are used to installing and managing SQL Server with high level privileges like sysadmin. In this case, you may need to find alternative approaches to get the intended behavior from your SQL Server instance.  

We were recently helping a customer migrate their SQL Server databases to Cloud SQL for SQL Server. During the migration assessment we realized that while Cloud SQL for SQL Server defaults to the UTC timezone, the customer was in IST timezone.  As of this writing, Cloud SQL for SQL Server doesn’t allow changing the instance level timezone setting. What to do? 

Changing the database timezone

SQL Server users typically fetch the local timezone by using the GETDATE() function with insert/update statements or as a default constraint for a datetime column in a select statement.

1. Insert/update statements:

Loading...

 Or

Loading...

2. As a default constraint:

Loading...

Since Cloud SQL uses UTC time zone, every time you use the above DML statements, Cloud SQL will insert UTC Date/Time in the respective rows. 

To override the UTC timezone with the one of your choice, you can use the AT TIME ZONE function that converts an inputdate to the corresponding datetimeoffset value in the target time zone. 

Let’s walk through an example.

Prerequisites

Before proceeding to the example, ensure that you have:

After connecting to your database running on the Cloud SQL for SQL Server instance, check the present timezone.

Loading...

https://storage.googleapis.com/gweb-cloudblog-publish/images/1_local_timezone.max-1000x1000.jpg

Confirm that it’s set to UTC. 

Example Walkthrough

Create a table with a datetime column in your database.

Loading...

Insert some data into the table.

Loading...

Select the table to confirm that the data is getting stored in the UTC timezone.

Loading...

https://storage.googleapis.com/gweb-cloudblog-publish/images/2_local_timezone.max-900x900.jpg

To retrieve the salesDate with the local timezone (in this example, IST Timezone), use the following:

Loading...

https://storage.googleapis.com/gweb-cloudblog-publish/images/3_local_timezone.max-600x600.jpg

Notice the difference between SalesDate and SalesDateIST above.

This process can work well for new applications where you need to retrieve the data based on the local timezone. If you are migrating an existing database which already has local time within the existing tables, any new data inserted in Cloud SQL for SQL Server will default to the UTC timezone, resulting in data inconsistency issues. To overcome this problem, you can create a function that returns the local time as follows:

Loading...

Now when you run the following command, SalesDateIST will return the SalesDate based on the IST time zone.

Loading...

https://storage.googleapis.com/gweb-cloudblog-publish/images/4_local_timezone.max-600x600.jpg

Once again, notice the difference between SalesDate and SalesDateIST above.

You can also use the function to insert the data with the timezone of your choice. 

To try this function out, truncate the table and insert the data again using the function dbo.udf_localdate:

Loading...

Now, the data is inserted into the table as IST Timezone and you do not need to convert this data while querying as you can see below.

Loading...

https://storage.googleapis.com/gweb-cloudblog-publish/images/5_local_timezone.max-900x900.jpg

This fix solves a part of the problem where the date value is specified in the Insert/Update statement. However, you might also be using GETDATE() as a default constraint in your table, which means that if you don’t specify a value, the current date in the UTC time zone would be inserted into Datetime columns (as you can see in the example below.)

Loading...

Notice the UTC Timezone reflected in SalesDate.

https://storage.googleapis.com/gweb-cloudblog-publish/images/6_local_timezone.max-900x900.jpg

To ensure that the Datetime value inserted by the default constraint is in the timezone of your choice, replace the GETDATE system function in the constraint with the Localdate function defined earlier. To do so, drop the existing default constraint and recreate it as follows:

Loading...

Now if you select the table, you will see that the data is inserted with the IST timezone.

Loading...

To see the list of timezones supported by SQL Server, run the following command:

https://storage.googleapis.com/gweb-cloudblog-publish/images/7_local_timezone.max-900x900.jpg
Loading...

Conclusion

When migrating your databases to Cloud SQL for SQL Server, pay close attention to the supported features including the supported timezone. If your application uses a  non-UTC timezone, use the workarounds described in this blog to ensure a successful migration and reap the benefits of Cloud SQL while focusing on your business priorities.

Posted in