Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 오라클오류
- HTML
- 변수
- CSS
- 코딩
- error
- SQL
- 자바
- 개발자
- 연산자
- sqldeveloper
- 자료형
- datatype
- 오류
- 오라클
- 서블릿
- 이클립스
- function
- From
- select
- Eclipse
- Operator
- oracle
- VisualStudioCode
- Java
- JS
- 에러
- 삐옥
- variable
- Servlet
Archives
- Today
- Total
뇨내
ORA-08002 본문
1
|
select seqMemo.currVal from dual;
|
cs |
오류보고
ORA-08002: sequence SEQMEMO.CURRVAL is not yet defined in this session
08002. 00000 - "sequence %s.CURRVAL is not yet defined in this session"
*Cause: sequence CURRVAL has been selected before sequence NEXTVAL
*Action: select NEXTVAL from the sequence before selecting CURRVAL
- 오라클 재시작 직후 위의 쿼리를 실행 했을 때 발생하는 에러
> nextVal을 한번 이상 호출 한 후 currVal을 호출하면 문제 해결
Comments