I am trying to create a persisted computed column using CASE expression:
ALTER TABLE dbo.Calendar ADD PreviousDate AS
case WHEN [Date]>\'20100101\' THEN
Apparently it is very picky about data types. Try doing this:
ALTER TABLE dbo.Calendar ADD PreviousDate AS
case WHEN [Date ]> Convert(DateTime, '20100101', 101) THEN [Date]
ELSE Convert(DateTime, NULL, 101)
END PERSISTED
You need to CONVERT '20100101' with a style.
Source or target type is datetime or smalldatetime, the other source or target type is a character string, and a nondeterministic style is specified.
So, try this:
...WHEN [Date] > CONVERT(datetime, '20100101', 112)....
Date parsing from string can be unreliable as I've answered before (mostly in comments)
Edit:
I wouldn't say it's a bug, but SQL Server asking for 100% clarification. yyyymmdd is not ISO and SQL Server parsing yyyy-mm-dd is unreliable (see my answer link)