0

I have multiple (more then 20 locations having 10 Million Transactions/Year) locations with SQL server instances.

I need to move all these transactions (having independent identity on each site) from multiple sites to a Main SQL Instance in head office for reporting purpose only. I need solutions without using Bigint in Identity column and replication.

Andrei Petrenko
  • 3,922
  • 3
  • 31
  • 53
Born In Aban
  • 160
  • 1
  • 2
  • 9

1 Answers1

0

Try using NEWID() or NEWSEQUENTIALID()

AnandPhadke
  • 13,160
  • 5
  • 26
  • 33