2026-03-12 20:23:15
This commit is contained in:
12
Kevin_Meade/showowner.sql
Normal file
12
Kevin_Meade/showowner.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
--
|
||||
-- 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
|
||||
/
|
||||
Reference in New Issue
Block a user