Search notes:

Oracle SQL Plan operation: TABLE ACCESS

create table tq84_tab (col_1 number, col_2 varchar2(10));

explain plan for
   select
      *
   from
      tq84_tab;

select * from table(dbms_xplan.display(format => 'basic'));

drop table tq84_tab;

See also

TABLE ACCESS is one of the plan operations where the plan_table column access_predicates is sometimes is filled with a value.
Oracle: SQL statement execution plan operations

Index