I use Hibernate on my Java project, I have Oracle DB. An ID column, I identified a sequence with increment 1. But this is how JPA/Hibernate gets nextVal from the sequence:
1 43675451
2 43675450
3 43675402
4 43675401
5 43675400
6 43675352
7 43675351
8 43675350
9 43674426
You can see that nextVal sometimes get 1, but mostly 50 or more. I see even the start of a sequence 200 even though I put the start value 1. Why is this happening? Is this normal?
Can I reduce this "50" increment somehow?
Edit: Duplicate of hibernate oracle sequence produces large gap