If you have a table with at most 10 records and it is referenced in lots of other tables( Via FK relationship) with at least 1,000,000 records in each table .
What will you recommend for type of PK( GUID or tinyint ), if replication is never going to be used? I have bump into this page with followng excerpt:
Guids on SQL Server can perform FASTER than numeric types, once you exceed about 100,000 rows on modern hardware. This is due to the indexing optimizations (cascading of the guid blocks) MS has implemented
is that true that GUID will perform faster in my case?
Thanks in advance ;)