Does anyone know of an elegant way I can add NewId's from the parent table to all related tables?
I am forecasting items and if a new item is added to the main table then all the other tables need to have that id in it so the user knows that data must be entered for that entity. I have many related tables, many of which are forecast adjustments.
For example
Items Table
ItemID | Name | Type
---------------------
1 Drug1 Brand
2 Drug 1 generic
Forecast Table - The timeline is setup by the user and is stored in another table.
Item ID | Date | Value
=========================
1 1/1/2008 102
1 2/1/2008 34
1 3/1/2008 939
2 1/1/2008
2 2/1/2008
2 3/1/2008
I am forecasting items and if a new item is added to the main table then all the other tables need to have that id in it so the user knows that data must be entered for that entity. I have many related tables, many of which are forecast adjustments.
For example
Items Table
ItemID | Name | Type
---------------------
1 Drug1 Brand
2 Drug 1 generic
Forecast Table - The timeline is setup by the user and is stored in another table.
Item ID | Date | Value
=========================
1 1/1/2008 102
1 2/1/2008 34
1 3/1/2008 939
2 1/1/2008
2 2/1/2008
2 3/1/2008