• One possibility for this is to go into the Dace version of 6th normal form for columns affected by this, and use an anchor model. However, that may be overkill (I'm sure Chris Dave would say it's not; and I know i would say it probably is). You can get most of the benefits by moving attributes which are no longer used into separate tables, each new table having a bunch of attributes which all became obsolete at the same time together with the primary key attributes identifying what each row refers to, so that you don't need to have rows in the table for things which don't have values for its non-key columns - entries which use those attributes can be handled using joins from the main table to the relevant extra tables.

    Personally, I suspect that you would be better of splitting into tables that have complete sets and avoiding the extra joins, as you seem to be suggesting as one option, as that achieves much the same space saving and equally removes the need for having to devise values to put in these columns if the new items thenew columns are required for business reasons not to be nullable and you want to enforce that as a domain constraint to help ensure data integrity.

    It's probably not a good idea to keep all the old columns and all the new columns in one table as it restricts how much data integrity enforcement you can do using constraints. But if you don't need to do that sort of data integrity (something which is far more often believed that true, unfortunately) keeping all columns in the one table won't cause problems.

    Tom