field(50000;"Timestamp";BigInteger)
{
SQLTimestamp = true;
}
Causes the following error:
"The request for path /nav/dev/apps?SchemaUpdateMode=synchronize failed with code InternalServerError. Reason: Specifying default value for timestamp column"
Any suggestions on how to solve this?
Answers
Dynamics NAV, MS SQL Server, Wherescape RED;
PRINCE2 Practitioner - License GR657010572SG
GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-03
"The request for path /nav/dev/apps?SchemaUpdateMode=recreate failed with code InternalServerError. Reason: Specifying default value for timestamp column"
(+ I'd rather avoid using the recreate option)
Then it must be something else. Can't really come up with what. Did you try it in a docker setup @NoOneLt ?
Yesterday i updated image/container and iam able to have this table even with "Syncronize"
table 50100 MyTable
{
DataClassification = ToBeClassified;
fields
{
field(1;MyField; Integer)
{
DataClassification = ToBeClassified;
}
field(2;MyTimestamp; BigInteger)
{
SqlTimestamp = true;
}
}