일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mssql database 삭제
- ora-28002: the password will expire within 7 days
- oracle 파티션 datapump
- supplemental log 활성화
- oracle tde
- oracle system lock
- SQL Server
- oracle awr
- oracle pdb
- sql user 생성
- oracle dba_profile password_life_time
- oracle install
- 오라클
- Oracle Database
- oracle
- ora-00439: feature not enabled: partitioning
- oracle SCN
- oracle supplemental
- SSMS
- oracle datapump
- MSSQL
- ORA-00020
- partition_options=merge
- oracleasm
- oracle account_status expired
- oracle role 삭제
- ora-39083 ora-00439
- create role
- Oracle RAC
- oracle 테스트 데이터
Archives
- Today
- Total
신문지한장

1. 테스트용 테이블 생성create table tasselect d.no, e.*from scott.emp e, (select rownum no from dual connect by level 2. 테스트용 인덱스 생성create index t_x01 on t(deptno,no);create index t_x02 on t(deptno, job, no); 3. T테이블에 통계정보 수집exec dbms_stats.gather_table_stats(user, 't'); 4. AutoTrace 활성화 후 SQL 실행시 실행계획 확인가능select * from twhere deptno=10and no=1;옵티마이저가 선택한 인덱스 T_X01, T_X02를 선택할 수있고 테이블을 선택할 수 있는데 T_X01을 ..
Oracle/sql&script
2024. 8. 6. 16:55