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 |
Tags
- transient
- JDBC
- 16bit
- DB연동
- DB
- Transaction
- 8bit
- 난수
- Connection
- driver
- 오라클
- Reader
- swing
- Oracle
- 자바
- array
- select
- stream
- statement
- 조회
- Serializable
- java
- 다이얼로그
- 상속
- Annotaion
- where
- 예외처리
- Join
- InputStream
- set
Archives
- Today
- Total
목록순차적 (1)
오버플로
[Oracle] sequence
sequence - 순차적으로 증가하는 번호를 관리하는 객체 - 레코드를 insert하는 순서대로 번호를 넣어야 할 때 - 오라클 버전에 따라 순차적인 번호를 사용하지 못할 수도 있음 > 12c 이전에는 오라클이 종료되면 cache에 설정한 sequence 번호가 사라짐 (8i, 9i, 10g,11g) > 12c 이후 부터는 insert를 실패한 경우에만 번호가 사라짐 (12c~19c) - user_sequences data dictionary에서 생성된 시퀀스를 확인할 수 있음 - 시퀀스 생성) create sequence 시퀀스명 increment by 증가값 start with 시작값 maxvalue 끝값 cache 메모리에 올릴 번호 개수 반복여부; (cycle | nocycle) > 시퀀스 생성..
Oracle
2021. 9. 30. 21:36