To all,
I am currently designing an issue database for my company. The back-end is a MySQL server 4.0. The main table "Issues" consists of the fields "IssueID" (varchar 8), "IssueDescription" (varchar 120), "IssueEnteredBy" (varchar 20), "IssueRequestedBy" (varchar 20), "IssueResponsibility" (varchar 20).
Now, I would like to add a field for a detailed description ("IssueDetails") with a length of 8192 varchars.
Question:
Should I add a seperate table just for the details, or should I include it into the "Issues" table? I am wondering because of performance reasons. This database will grow very large after a while.
Thanks a bunch for your help!!
Greets,
Michael