Hi,
I have a table with hundreds of millions of records and need to update an xml column to null.
I do something like this:
UPDATE [Mydb].[MySchema].[MyTable]
SET [XMLColumn] = null
Currently it is taking around 6 hours.
Is there a quicker way to do this?
Thanks