hi!
im new to database design, and i would like to know the best way to design a log table.
as of now, my present design is as below:
- Log_ID ---> primary key
- Log_Date
- Log_User_ID
- Log_Type
- Log_Procedure_Name
where "Log_ID" is an automatically generated integer.
a programmer in the team suggested the Log_ID is NOT needed because it DOES NOT have any actual use - the log table being but only a history record. any ideas on the matter?
also, if someone else has a better design, could you at least share it?
thanks!
im new to database design, and i would like to know the best way to design a log table.
as of now, my present design is as below:
- Log_ID ---> primary key
- Log_Date
- Log_User_ID
- Log_Type
- Log_Procedure_Name
where "Log_ID" is an automatically generated integer.
a programmer in the team suggested the Log_ID is NOT needed because it DOES NOT have any actual use - the log table being but only a history record. any ideas on the matter?
also, if someone else has a better design, could you at least share it?
thanks!