I have 3 tables
tblShares has information tracking a windows 2000 share (Share Name, Owner of the share, size, etc.)
tblGroups has information to track groups (security permission groups) associated with a share
(Group Name, owner, etc..)
tblJoin is a junction table that joins tblShares and tblGroups because there is a many-to-many relationship with both. One share can have several security groups and one security group can belong to many shares.
What I need to to is set up a history table to track when the security permissions on the shares and the groups are reviewed. I need to track every time a share is reviewed along with every time a group is review associated with that share. For example, share 1 was reveiwed on this date and has group1 that was reviewed on this date, group 2 that was reviewed on this date...etc. How can I do this in a history table? Also, would I need to link this history table to the junciton table so I could keep track of all shares and all groups?
Any ideas?
Thanks, Lilo
tblShares has information tracking a windows 2000 share (Share Name, Owner of the share, size, etc.)
tblGroups has information to track groups (security permission groups) associated with a share
(Group Name, owner, etc..)
tblJoin is a junction table that joins tblShares and tblGroups because there is a many-to-many relationship with both. One share can have several security groups and one security group can belong to many shares.
What I need to to is set up a history table to track when the security permissions on the shares and the groups are reviewed. I need to track every time a share is reviewed along with every time a group is review associated with that share. For example, share 1 was reveiwed on this date and has group1 that was reviewed on this date, group 2 that was reviewed on this date...etc. How can I do this in a history table? Also, would I need to link this history table to the junciton table so I could keep track of all shares and all groups?
Any ideas?
Thanks, Lilo