views:

140

answers:

2

Hi

I'm converting a foxpro database to SQL Server and some of the keys are VFP-generated unique identifiers - GUIDs I assume. Are these valid uniqueidentifiers?

Can I just use the bytes and convert them easily into a uniqueidentifier in SQL Server?

Thanks,

Craig

+2  A: 

yes it is the same

SQLMenace
A: 

VFP's unique identifiers are just integers, not GUIDs. By default, they start from 1 and go up by 1.

Tamar E. Granor