I have a Produto (id, descricao, tipo)
table and this same table is on three different computers.
All three write data to your machine and from time to time send data to a server.
What happens is this: let's say that PC1 and PC2 write data to the table:
PC1-
1, produto1, tipo1
2, produto2, tipo2
3, produto3, tipo3
PC2 -
1, produto4, tipo4
2, produto5, tipo5
3, produto6, tipo6
When the data is sent to the server, it will be + - like this:
1, produto1, tipo1
2, produto2, tipo2
3, produto3, tipo3
4, produto4, tipo4
5, produto5, tipo5
6, produto6, tipo6
This data will be downloaded by all other PCs to update in their local banks, and will be generated confusion with the IDs. Ex:
on PC1 product4 will have ID 4
on PC2 product1 will have ID 4
My question is: Is it possible to generate a non-recurring ID?