Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
accept which_schema prompt "Which Oracle User's objects would you like to see? "
select substr(object_name,1,30)object, object_type
from dba_objects
where owner = upper('&which_schema')
order by object_name
/
@showschemaobjects
Which Oracle User's objects would you like to see? test
OBJECT OBJECT_TYPE
------------------------------ ------------------
A TABLE
ABC TABLE
AC TABLE
ACCOUNT TABLE
ACCUM_PACK PACKAGE
ACCUM_PACK PACKAGE BODY
AD TABLE
ADDRENTAL PROCEDURE
ADDRESS TABLE
ADDRESSES TABLE
ADD_MINUTE FUNCTION
ADMIN_EMPLOYEES VIEW
...