Re: DESCRIBE schema???
From: Yasuhiro Ushitaki <ushi_at_po.globe.or.jp>
Date: 1996/12/09
Message-ID: <01bbe5db$f8a85300$LocalHost_at_dynabook>#1/1
Date: 1996/12/09
Message-ID: <01bbe5db$f8a85300$LocalHost_at_dynabook>#1/1
Hi,
Systems and Programming <sysdev_at_adpsystems.mb.ca> wrote in article
<32A869D4.55B9_at_adpsystems.mb.ca>...
> Speaking of which, is it true that schemas in Oracle are
> defined as all the tables that belong to a particular
> owner? Where can I find info on these concepts?
DESCRIBE and SQL commands search objects as following step when no schema is specified.
- Table, view or private synonym
- Public synonym.
You can check whom an object belong to, as following.
SELECT object_type, owner, object_name FROM ALL_OBJECTS
WHERE object_name = 'object-name to descraibe';
-- Yasuhiro Ushitaki / Toyo Information Systems Co.,Ltd.Received on Mon Dec 09 1996 - 00:00:00 CET