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_Jobstable with an attribute calledOrigindefining where the job came from -AppleServerorOrangeServer.
OR
- make a separate
Orange_Jobstable.
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.