SQL Plus Oracle PLSQL

SQL>
SQL>
SQL> alter session set cursor_sharing = force;
Session altered.
SQL>
SQL> select substr(object_name,1,2)
  2    from all_objects t2
  3   where rownum = 1
  4  /
SUBSTR(OBJECT_NAME,1,2)
------------------------------
IC
SQL>
SQL>