ALTER TABLE without locking the table?
The only other option is to do manually what many RDBMS systems do anyway… – Create a new table You can then copy the contents of the old table over a chunk at a time. Whilst always being cautious of any INSERT/UPDATE/DELETE on the source table. (Could be managed by a trigger. Although this would … Read more