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