D
Decembersonata
I am working on designing a database that will be used to audit data through
a form. The data we receive will come from unique sources and will have
similar, but not always similar, field names and field types. I know I could
just design tables that are specifically designed to receive the data with
the field names already defined. However, I would like for the database to
be able to evolve and receive new types of data as we receive it. So my
question, what would be the best way to go about having a generic table with
each field defined as Var1, Var2, etc, and then, depending upon criteria
(perhaps a three letter code identifying the source of data), map field names
onto this generic table, so that I'm only pulling data from a single table
instead of multiple tables based on multiple data sources.
a form. The data we receive will come from unique sources and will have
similar, but not always similar, field names and field types. I know I could
just design tables that are specifically designed to receive the data with
the field names already defined. However, I would like for the database to
be able to evolve and receive new types of data as we receive it. So my
question, what would be the best way to go about having a generic table with
each field defined as Var1, Var2, etc, and then, depending upon criteria
(perhaps a three letter code identifying the source of data), map field names
onto this generic table, so that I'm only pulling data from a single table
instead of multiple tables based on multiple data sources.