Hi
In my VB.net app, I use the following SQL statement to duplicate a table. If the original table has an Identity field that is a primary key the new table created has this identity column but it is no longer a primary key field. Why would thid be?
sSQL = "SELECT * INTO [My New Table] FROM [My Old Table]"