| title | GETUTCDATE (SSIS Expression) | ||||
|---|---|---|---|---|---|
| description | GETUTCDATE (SSIS Expression) | ||||
| author | chugugrace | ||||
| ms.author | chugu | ||||
| ms.date | 03/01/2017 | ||||
| ms.service | sql | ||||
| ms.subservice | integration-services | ||||
| ms.topic | concept-article | ||||
| helpviewer_keywords |
|
[!INCLUDEsqlserver-ssis]
Returns the current date of the system in UTC time (Universal Time Coordinate or Greenwich Mean Time) using a DT_DBTIMESTAMP format. The GETUTCDATE function takes no arguments.
GETUTCDATE()
None
DT_DBTIMESTAMP
This example returns the year of the current date in UTC time.
DATEPART("year",GETUTCDATE())
This example returns the number of days between a date in the ModifiedDate column and the current UTC date.
DATEDIFF("dd",ModifiedDate,GETUTCDATE())
This example adds three months to the current UTC date.
DATEADD("Month",3,GETUTCDATE())