Pergunta

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

Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top