I have millions of items where I need to set whether they exist or not for many different configurations that will change over time.
I have four parameters.
Production
14.15
Both-Local-General
Exists
I want to create a table where the column name looks like Production,14.15,Both-Local-General,Exists
to store boolean values whether or not a certain item exists for that configuration. The items will each have one row.
The parameters will constantly change throughout time, so new columns will need to be added using a C# application.
I want to create a new column where the configuration will be different each time.
Is this a bad idea?
Should I store the parameters in a different table? Or is there a better way to do this?