Does Oracle automatically create a secondary index for FOREIGN KEY columns? Does Oracle automatically create a secondary index for FOREIGN KEY columns? oracle oracle

Does Oracle automatically create a secondary index for FOREIGN KEY columns?


No, Oracle doesn't automatically create indexes on foreign key columns, even though in 99% of cases you probably should. Apart from helping with queries, the index also improves the performance of delete statements on the parent table.