Kør følgende forespørgsel:
SELECT 'UPDATE yourtable SET ' + name + ' = NULL WHERE ' + name + ' = '''';'
FROM syscolumns
WHERE id = object_id('yourtable')
AND isnullable = 1;
Outputtet af denne forespørgsel vil være en del af SQL-script som dette:
UPDATE yourtable SET column1 = NULL WHERE column1 = '';
UPDATE yourtable SET column2 = NULL WHERE column2 = '';
UPDATE yourtable SET column3 = NULL WHERE column3 = '';
-- etc...
Kopiér og indsæt det SQL-script i en ny forespørgsel, og kør det for at opdatere alle dine kolonner.