Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: objects retrieval

Re: objects retrieval

From: John Durst <jdurst_at_sky.net>
Date: Mon, 12 Oct 1998 21:06:04 -0500
Message-ID: <3622B58C.3B0419A4@sky.net>


The closest data dictionary object to this in Oracle is dba_objects:

  select object_type, object_name from dba_objects where owner = <schema>;

  OBJECT_TYPE OBJECT_NAME

Paul Chang wrote:

> Hi,
>
> I am new to Oracle.
> We have a third-party script to install db objects into one oracle tablespace in
> one user schema.
> Scripts contain table/stored proc/trigger/rule/constraints/...
>
> How can I get the list of objects installed?
>
> in sybase:
>
> select * from sysobjects where type = "U" or type = "TR" or type = ....
>
> How I can do in Oracle?
>
> thanks,
>
> Paul.
Received on Mon Oct 12 1998 - 21:06:04 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US