I'm using the statement below to create the primary key on a table. The key needs to be non modifiable. I can't see anyway to include that restriction with this statement. Would it be more appropriate to use a create unique index statement instead?
ALTER TABLE adspxapi in Dictionary ADD PRIMARY KEY (AdNumber,EntryYear,PubNumber) #
Jim R
ALTER TABLE adspxapi in Dictionary ADD PRIMARY KEY (AdNumber,EntryYear,PubNumber) #
Jim R