Suppose I have a table called Apple_Jobs
.
It defines jobs coming from the Apple_Server
.
Now suppose I have another server called Orange_Server
Should I
- modify the existing
Apple_Jobs
table with an attribute calledOrigin
defining where the job came from -AppleServer
orOrangeServer
.
OR
- make a separate
Orange_Jobs
table.
With the first option, I would need to modify certain applications existing querys and stored procedures to only include AppleServer
origin jobs, with the second option I would not need to modify any stored procedures.
The structure of each table is the same.