We have a client that wants to change the owner of all the documents to no owner. They just want all of their documents not to be owned by anyone because they have experienced issues when some documents have an owner. They want to update this from within the TOC table and they would like to run this script to accomplish that:
UPDATE [dbo].[toc] SET
[toc_owner] = '0x010100000000000000000000'
WHERE [toc].[toc_owner] <> '0x010100000000000000000000'
Please let me know if this would do what they are wanting to do and if you feel there are any issues with running this script against the database table.
Thanks