I have a database with a lot of table relationships set and need to reset the main table's (ConceptID which is an auto numberand a Key field ). Is there a way to reset the ConceptID without removing all the relationships then altering the table field then reset all the relationships?
I tried this code but wasn't able to do it because of relationship.
Alter table [Concept]Alter Column [Conceptid]Counter(4000); When i run this i get the error message:
"Cannot change field 'ConceptID'. It is part of one or more relationships. Also, currently there are no records in any of the tables.
I tried this code but wasn't able to do it because of relationship.
Alter table [Concept]Alter Column [Conceptid]Counter(4000); When i run this i get the error message:
"Cannot change field 'ConceptID'. It is part of one or more relationships. Also, currently there are no records in any of the tables.
Comment