You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No update is being applied to the "LastUpdated" column. Remember to use UTC time.
Look into writing an UPDATE TRIGGER from the SQL side.
CREATETRIGGERBroadcasterLastUpdatedONdbo.Broadcaster
AFTER UPDATEASBEGINUPDATEdbo.BroadcasterSET LastUpdated = GETUTCDATE()
FROMdbo.Broadcaster b
INNER JOIN inserted i
ONb.Id=i.Id
END
GO
The text was updated successfully, but these errors were encountered:
SimpleSandman
changed the title
dbo.Broadcaster "LastUpdated" Column Isn't Working As Intended
dbo.Broadcaster "LastUpdated" Column Hasn't Been Properly Implemented
Nov 5, 2019
No update is being applied to the "LastUpdated" column. Remember to use UTC time.
Look into writing an
UPDATE TRIGGER
from the SQL side.The text was updated successfully, but these errors were encountered: