일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클
- 회계
- java
- 엑셀
- Book
- 태그를 입력해 주세요.
- JEUS
- 마이플랫폼
- 튜닝
- oracle
- Eclipse
- 에러
- JavaScript
- 데이터베이스
- 도서
- 톰캣
- 오류
- error
- Report Designer
- Excel
- 기타소득
- 자바
- MIP
- DB
- 함수
- 이클립스
- 한글
- 성능
- miplatform
- Tomcat
- Today
- Total
목록TABLE (4)
어느 가을날의 전환점
Pipelined Table FunctionsPipelining negates the need to build huge collections by piping rows out of the function as they are created, saving memory and allowing subsequent processing to start before all the rows are generated.Pipelined table functions include the PIPELINED clause and use the PIPE ROW call to push rows out of the function as soon as they are created, rather than building up a ta..
Recycle Bin- Oracle 10g에서 새롭게 추가 된 기능. 휴지통 안의 테이블 조회.SQL> show recyclebin; 테이블 복원 하기SQL> flashback table 테이블명 to before drop; 휴지통 보관없이 완전 삭제하기SQL> drop table 테이블명 purge; 휴지통의 특정 테이블 비우기SQL> purge table 테이블명; 휴지통 비우기.SQL> purge recyclebin; # 참고: http://www.orafaq.com/node/968
오라클을 통해 작업할 시 insert시점에서 정상적으로 인덱싱이 되지 않는 경우가 발생한다. 특히 결합인덱스를 많이 사용하고 있는 경우 발생될 확률이 높다. 이런경우 오라클의 Analyzed를 통해서 해결이 가능하고 어느정도의 실행속도를 향상 시킬 수있다. (실제 오라클사에서도 3개월에 한번씩은 Analyze를 실행하라 권고하고 있다.) [Analyzed 확인 방법] select table_name, num_rows, to_char(last_analyzed, 'yyyymmdd') from user_tables select index_name, num_rows, to_char(last_analyzed, 'yyyymmdd') from user_indexes ex) select table_name, num_r..
1) Table A와 Table B 가 있는데. A의 내용을 B로 복사하는 방법 SQL>INSERT INTO b SELECT * FROM a; 2) Table A가 있고 Table B를 생성하면서 복사하는 방법 SQL>CREATE TABLE b AS SELECT * FROM a; 3) Table A가 있고 Table A와 구조가 같고 내용은 복사하지 않는 Table B 생성 방법 SQL>CREATE TABLE b AS SELECT * FROM a WHERE 1 = 2;