Ended up being a simpler solution than expected... the query had been
update table set newfield = 1 where newfield is nulland really should have just been
update %NOINDEX table set newfield = 1(because it was null everywhere).
- Log in to post comments