Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Wow, I was just about to ask about the very same problem! How does one obtain the CURRVAL without issuing NEXTVAL? When I examine the sequence in TOAD's schema browser, it shows a value and I'm pretty sure it's not using NEXTVAL.What you experienced is published behaviour of "currval" -- You cannot access it until after you have accessed "nextval". "Currval's" entire reason for living is to show you the value that the sequence most recently "delivered" to the session asking to see "currval". So what you see is what you should always expect to happen.