Question

Consider a SQL Server CE 4 table with a non-nullable column: FooDate. The goal is to have the current UTC datetime as the default.

The function is not recognized by SQL Server Compact. Name of function GetUTCDate.

The function GetDate() works as expected as a default to a datetime column in SQL Server Compact 4.

Is GetUTCDate() supported in SQL Server CE 4 at all?

alt text

Was it helpful?

Solution

SQL Server CE supports a limited subset of T-SQL functions. GetUTCDate() is not one of them.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top