G
Guest
I'm writing a Help Desk application. It tracks Help Desk tickets for several groups
The old system (which I am rewriting from scratch) kept a lot of information in the main table and I want to reduce this to minimize network traffic
The Client and Hardware data are all obtained from reference tables and saved in the main Ticket table. The reason being that these tables are imported and when hardware changes and people leave, their records would be lost
How to handle this? I'd like to get this info out of my main Ticket table
Another thing is that several different support areas have different data requirements and all these fields are kept in the main table. It is a one-for-one relationship with the rest of the data but may be inapplicable from ticket to ticket
Foir instance if a ticket is for a mainframe application, there may be information about job name, job number, abend code etc. For other tickets this will all be blank because it is inapplicable
But I am concerned about update synchronization problems if I keep this data in multiple tables
How should this be handled
The old system (which I am rewriting from scratch) kept a lot of information in the main table and I want to reduce this to minimize network traffic
The Client and Hardware data are all obtained from reference tables and saved in the main Ticket table. The reason being that these tables are imported and when hardware changes and people leave, their records would be lost
How to handle this? I'd like to get this info out of my main Ticket table
Another thing is that several different support areas have different data requirements and all these fields are kept in the main table. It is a one-for-one relationship with the rest of the data but may be inapplicable from ticket to ticket
Foir instance if a ticket is for a mainframe application, there may be information about job name, job number, abend code etc. For other tickets this will all be blank because it is inapplicable
But I am concerned about update synchronization problems if I keep this data in multiple tables
How should this be handled