I have about 90,000,000 records in a table I'm trying to update. The log file is expiring though on the SQL server because it is growing too large with information on every update. I was told I need to commit every 100,000 rows or something in order for it to work. Is there a way to specifiy a commit in the update statment after x number of rows?
Heres the statment:
Update Table Set "second Column" = 'Test ' where "first column" Like '%AA%'
Heres the statment:
Update Table Set "second Column" = 'Test ' where "first column" Like '%AA%'