How do I create rows from a view. I have 3 tables
1. dim_tasks contains a list of mandatory tasks.
2. dim_people are all of the people
3. Src_tasks contains the tasks assigned to a person.
If I join dim_task and dim_people and create Qry_People_Task s I can get all of the tasks.
If I take Qry_people_Task s and join it with the src_tasks table the results would return all tasks where a row existed in the src_tasks table or not. It would accomplish my objective - make sure as new tasks get added - the user gets assigned these rows. But I'm stuck - where do I go from here?
Joani
1. dim_tasks contains a list of mandatory tasks.
2. dim_people are all of the people
3. Src_tasks contains the tasks assigned to a person.
If I join dim_task and dim_people and create Qry_People_Task s I can get all of the tasks.
If I take Qry_people_Task s and join it with the src_tasks table the results would return all tasks where a row existed in the src_tasks table or not. It would accomplish my objective - make sure as new tasks get added - the user gets assigned these rows. But I'm stuck - where do I go from here?
Joani
Comment