When is it beneficial at all to create a seperate table for a one to one relationship? I’ve got a db with thousands of records. I have about 5-10 employees who will be assigned these records. Each week about 300-500 ne records will be added / dropped, requiring a script to assign these. Is it good / bad practice to put the assignedTo field on a seperate table?
Also. I’m running this db in access, about to switch to SQL server. Each record has a status that must be limited to 10 or so text responses. Should I change this to a number code with a relationship linking that number code to the text version of the status? Or can I continue to rely on code / db design to limit responses to my given selection.