How to access the current value and next value from a
sequence?
Answers were Sorted based on User's Feedback
Answer / saty
select sequencename.currval from dual
select sequencename.nextval from dual
if we will give only table name thr will be error
Thanks & regards
satya
+919916174212
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / chandrasekar ramasamy
select sequencename.currval from tablename
select sequencename.nextval from tablename
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / shai
select *
from user_sequences;
The last_number column will display the number available
next.
if no_cache is used in sequence definition then you can
trust on last_number column from user_sequence.
But if cache is used then below will take place:
If Cache is 20 then last_number will display any number
within range of sequence currval+20
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / p.rajasekar
We cannot directly get Current value from the sequence.So
first we need to get the next value, then we can get the
current value in the same scope
select sequencename.nextval from tablename
select sequencename.currval from tablename
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / sweta
select sequencename.currval,sequencename.nextval from dual;
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / tulsi
select currval.sequence_name from table_name
select nextval.sequence_name from table_name
| Is This Answer Correct ? | 0 Yes | 9 No |
How to get help at the sql prompt?
Is sql the best database?
What is clause?
Is the primary key an index?
What is cursor in pl sql?
what is the stuff function and how does it differ from the replace function? : Sql dba
What is a natural join sql?
Does truncate need commit?
What do you understand by case manipulation functions?
What is a field in a database?
C. Normalize the following data up to the 3rd Normal form. Create the tables and insert the data given. Emp_ID Name Dept_Name Salary Course_Title Date_Completed 100 Adam Marketing 48,000 SPSS 6/19/2008 Surveys 10/7/2008 140 Bob Accounting 52,000 Tax Acc 12/8/2008 110 Cathy IT SQL Server 1/12/2008 C# 4/22/2008 190 Dan Finance 150 Emily Marketing 55,000 SPSS 6/16/2008 42,000 Analysis 8/12/2008 Queries 1. Find all Names who have completed the SPSS Course. 2. Find employee with max salary. 3. Find employee with 2nd max salary. 4. Find all employees in Dept “Marketing”. 5. Find all the employees who have taken more than 2 courses. 6. Find all the employees who have completed the courses before month of September.
What is an exception in PL/SQL? What are the two types of exceptions?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)