I have a few systems and I need to import data from these systems into a common table. But ID is unique only within source system. So I need to create my own primary key to uniquely identify this data in the target table.
What is best practice to resolve the problem? I don't want to create primary key as character and I don't want to generate an ID for instance by adding 1000000000. Concatenation with name of system will build character data type. Do you have an idea or some solution?
Thanks for help.