let's say we have a database with 10 tables. each table holds different kinds of data, but has the same first two control fields and for simpicity let's agree to call them field_1 and field_2. another property of our data base configureation requires the following, namely on every record in every table we want two things to be true: field_1 will contain '123' and field_2 to contain 'xyz'.
my current approach has me keying '123' and 'xyz' as the default values for field_1 and field_2, respectively, in every table involved. so, when a user opens a table, the two fields are pre-populated with the desired contents. the data have been changed to simplify the question posed, but i think the motivation is clear enough.
so, i guess the question is: does there happen to be a niftier way of getting the same result?
my current approach has me keying '123' and 'xyz' as the default values for field_1 and field_2, respectively, in every table involved. so, when a user opens a table, the two fields are pre-populated with the desired contents. the data have been changed to simplify the question posed, but i think the motivation is clear enough.
so, i guess the question is: does there happen to be a niftier way of getting the same result?