I have two columns that I want to convert from computed to non computed. I have the code for that. However, it was suggested to me to use the ALTER TABLE SWITCH. I believe the individual who suggested it, didn't want to put the database in downtime. I am thinking they wanted something like this 1) Create new file group 2) Create new duplicate table which has computed columns on new file group 3) Alter the computed columns to non computed columns 4) Switch the database to use this new file group/table 5) Drop the old file group/table with the computed columns
However, when I research the ALTER TABLE SWITCH command it seems to me that this scenario isn't the correct usage of this.
Is there a way to use ALTER TABLE SWITCH to change computed columns to non computed columns?