Performance Improvement – Index scan with NULL conditionWhat will be our first step when we start tuning the queries?
The first step is creating the index. But simply creating the index does not improve the performance in all scenarios.The below scripts are proves that.SQL> create table t2 as3 select object_name name, a.*4 from all_objects a;Table created.SQL> alter table t modify name null;Table altered.SQL> create index t_idx on t(name);Index created.SQL> exec dbms_stats.gather_table_stats( user, 'T' );PL/SQL procedure successfully...