Hier is nog een alternatief om te proberen:
DECLARE @x float;
UPDATE MyTable
SET
@x = col1 = formula,
col2 = @x * …
OPTION (MAXDOP 1)
of:
DECLARE @x float;
UPDATE MyTable
SET
@x = formula,
col1 = @x,
col2 = @x * …
OPTION (MAXDOP 1)
OPTION (MAXDOP 1)
is er om de volgorde van evaluatie van opdrachten te waarborgen.