13 lines
225 B
SQL
13 lines
225 B
SQL
--
|
|
-- given an object name
|
|
-- show what schema owns it and what it is
|
|
--
|
|
|
|
col object_name format a30
|
|
|
|
select owner,object_type,object_name,status
|
|
from dba_objects
|
|
where object_name = upper('&&1')
|
|
order by 1,2,3
|
|
/
|