Conversely: Is it better to get all the columns created at the time when a new table is created?
I'm working on a new system and new requirements are coming up all the time. The latest requirement is to add a new tag field to each customer so that it will be easier to correlate data between the old and the new system. The new system is not in production yet, but some test runs of the migration process have been done.
At the moment it is still viable to delete the table and rerun the batch load, but what about the future - when there is a lot of live data in the system and a requirement for a new column comes up: Does it have any impact on performance for example, to export the data, recreate the table with all the columns, and import the data again, over just doing an ALTER TABLE ADD column .... ?
In case it makes any difference, the solution is based on PostgreSQL 9.5, and if it does make a difference it would be interesting to know which DBMS'es care more or less.
Does whether or not an index is created on this column affect the answer? E.g when a Unique constraint is set.
ALTER TABLEto avoid having to rebuild indices? – Max Candocia Sep 01 '17 at 19:20INSERTafter theALTER TABLEwould finish in a very long time, which it normally doesn't. Could you reference some documentation you got this piece of information from? – András Váczi Apr 09 '21 at 10:34