Counter as GUID.

C

Clive Mizen

I solved my earlier problem of how to define a column as Replication Id -
it's actually a field type of GUID.

But now I would like to alter a column to AutoNumber - type Replication Id

The following 2 pieces of DDL both work - but how do I combine the 2
requirements ?

1. ALTER TABLE table1 ALTER COLUMN AppId COUNTER;
2. ALTER TABLE table1 ALTER COLUMN AppId GUID;
 
Top