반응형
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
- 파이썬
- 클린 코드
- Oracle
- intellij
- 알고리즘
- 친절한SQL튜닝
- 조인
- SQLP
- 리트코드215
- 오라클
- 결합인덱스구조
- heapq
- 데이터모델링
- 리눅스
- B*Tree인덱스
- 클린코드
- table full scan
- B*Tree인덱스구조
- B*Tree
- index fast full scan
- leetcode215
- 오라클튜닝
- clean code
- join
- SQL튜닝의시작
- db
- 로버트C마틴
- RAC
- SQLD
- database
Archives
- Today
- Total
목록ERROR (2)
개발노트
ORA-14400: inserted partition key does not map to any partition
원인 파티션 테이블에 데이터를 추가할 때, 해당 데이터가 들어갈 파티션이 없는 경우 발생한다. 해결 insert 할 데이터가 들어갈 적절한 파티션을 추가해준다. 파티션 테이블에 값을 추가할 때는 파티션이 미리 구성되어 있어야 한다. RANGE 파티션 추가 방법 ALTER TABLE 테이블명 ADD PARTITION 파티션명 VALUES LESS THAN ('20230331');
ERROR
2023. 4. 3. 00:17
ORA-12838 : Cannot read/modify an object after modifying it in parallel
원인: 하나의 트랜잭션 내에서 parallel 또는 append 힌트가 적용된 DML 수행 후 commit, rollback 을 하지 않고 객체에 접근할 때 발생 해결: 트랜잭션 단위를 쪼개야 한다. parallel 또는 append 힌트가 적요된 DML 수행 후 바로 Commit 이나 Rollback 수행 oerr ora 12838 12838, 00000, “cannot read/modify an object after modifying it in parallel” // *Cause: Within the same transaction, an attempt was made to add read or // modification statements on a table after it had been mod..
ERROR
2022. 8. 11. 20:08