[TIBERO] 인덱스 추가 시, Plan변화 TEST
1. Table 생성 create tablespace USER_TEST01 datafile 'TS_USER_TEST_01.dtf' size 2G; create user test_user01 identified by "test01#$" default tablespace USER_TEST01; grant connect, resource to test_user01; --drop table test_user01.test01; create table test_user01.test01 (c1 number, c2 number, c3 varchar2(10) ) nologging; 2. 50만건 insert DECLARE TYPE tbl_ins IS TABLE OF test_user01.test01%ROWTYPE IND..