原因是新建的表没有收集统计信息导致
用dbms_stats.gather_table_stats收集统计信息
例子:
execute dbms_stats.gather_table_stats(ownname => 'owner',tabname => 'table_name' ,estimate_percent => null ,method_opt => 'for all indexed columns' ,cascade => true);
原因是新建的表没有收集统计信息导致
用dbms_stats.gather_table_stats收集统计信息
例子:
execute dbms_stats.gather_table_stats(ownname => 'owner',tabname => 'table_name' ,estimate_percent => null ,method_opt => 'for all indexed columns' ,cascade => true);