How to Update CDT

So I recently deleted some rows of my table from the Cloud Database and using a process model, I tried to enter user values via a form. The primary key in my table is ID and the rows that I deleted had ID's = 4, 5

When I entered new values via a form, the new row generated in my table had an ID = 6 and not ID = 4

So how do I make changes in the XSD file so that my ID value starts again from 4 ?

  Discussion posts and replies are publicly visible

Parents Reply
  • Can you provide more context on why you want to do this? In general it's a good idea to not reuse the same ID after you delete it because each unique identifier should only be used once. Just as an example - suppose you created another table and referred to the ID in this table with a foreign key. If you reuse the same ID, it's unclear if the foreign key refers to the original value or the new value.

Children
No Data