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 |
Tags
- 코딩
- Eclipse
- 변수
- 자료형
- 이클립스
- Java
- Operator
- 자바
- datatype
- 삐옥
- function
- HTML
- 연산자
- select
- 개발자
- CSS
- VisualStudioCode
- JS
- oracle
- 오라클
- Servlet
- 에러
- variable
- 오라클오류
- sqldeveloper
- 오류
- 서블릿
- From
- error
- SQL
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