I created a database that has all our security information from our DB2 system. I have 6 main tables with 4 association tables. I have populated all the tables using surrogate ID's as the primary key(PK) in each of the 6 main tables and then made the association table with its own surrogate primary key with the 2 foreign keys(FK) included from the main tables.
Example:
Table 1 = Bind_Owner
BNDOWNR_ID (PK)
BNDOWNR_NM
BNDOWNR_DESC
SYSTEM
ENVIRONMENT
Table 2 = Application_Files
APP_FILE_ID (PK)
NAME
CLASS
SYSTEM
ENVIRONMENT
ACCESS_SELECT (Y/N)
ACCESS_INSERT (Y/N)
ACCESS_UPDATE (Y/N)
ACCESS_DELETE (Y/N)
Table 3 = BINDOWNR_APP_ASSC
BNDOWNR_APP_ID (PK)
BNDOWNR_ID (FK)
APP_FILE_ID (FK)
I need help in creating something that will track updates, additions, deletions to these tables by the programmers in the agency. I need to develop an audit trail within this system.
I can't visualize an audit trail system and how to set this up. How do I capture the changes and user information to send to a table?
Please advise
Nettie205
Example:
Table 1 = Bind_Owner
BNDOWNR_ID (PK)
BNDOWNR_NM
BNDOWNR_DESC
SYSTEM
ENVIRONMENT
Table 2 = Application_Files
APP_FILE_ID (PK)
NAME
CLASS
SYSTEM
ENVIRONMENT
ACCESS_SELECT (Y/N)
ACCESS_INSERT (Y/N)
ACCESS_UPDATE (Y/N)
ACCESS_DELETE (Y/N)
Table 3 = BINDOWNR_APP_ASSC
BNDOWNR_APP_ID (PK)
BNDOWNR_ID (FK)
APP_FILE_ID (FK)
I need help in creating something that will track updates, additions, deletions to these tables by the programmers in the agency. I need to develop an audit trail within this system.
I can't visualize an audit trail system and how to set this up. How do I capture the changes and user information to send to a table?
Please advise
Nettie205