System Tables Views Oracle PLSQL

SQL>
SQL> create or replace outline outline_1
  2  for category CAT_1
  3  on select * from dual
  4  /
Outline created.
SQL>
SQL>
SQL> create or replace outline outline_2
  2  for category CAT_2
  3  on select * from dual
  4  /
Outline created.
SQL>
SQL>
SQL> create or replace outline outline_3
  2  for category CAT_2
  3  on select * from dual A
  4  /
Outline created.
SQL>
SQL>
SQL> select owner, name from dba_outlines where rownum < 50;
OWNER                          NAME
------------------------------ ------------------------------
RNTSOFT                         OUTLINE_1
RNTSOFT                         OUTLINE_2
RNTSOFT                         OUTLINE_3
RNTSOFT                         MYOUTLINE
SQL>