I'm working for a database from a legacy application. The database has a table called 'User' , with multiple records , the last of which id used is the value 900. I need to implement a user registration form , and the id has to start 901. In Postgres , I just used a sequence and set the start value to 901 . The problem is that the sql server has no sequence . How do I solve this problem with sql server and hibernate?
Thank you.