The following approaches are possible for designing a status related fields in a DB table.
Approach 01 :
- Using 'VARCHAR' as a data type.
- The direct status will be stored like NEW, IN PROGRESS, CLOSED
Limitations :
- Search for string in a table always requires more time & resource
- Changing the existing status text (ex: 'closed' to 'completed') requires full table update
Approach 02 :
- Create a status look-up table
- Use the status table as a foreign key in the dependent tables
Limitations :
- Maintaining the foreign key relationships
- Need to use JOIN for all the related queries in application
Approach 03 :
- Use short (or) int for the status field
- Maintain the status text using ENUM in the application interfaces(EJB)
This will solve the limitation of previous approaches
Limitations :
- Need to map the integer to the relevant status (But still using a enum instead a text is a better approach)
I feel the third approach will be more efficient in terms of * Faster DB indexing * Faster Search due to short (or) int fields (instead of) varchar * Of course less memory finger print
Could you please advise if there are any pit-falls of the third approach in terms of flexibility, maintenance and performance?
Thanks in advance