Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: HELP NEWBIE: listing of users objects with sql
SELECT object_type, object_name, date, status from dba_objects
where owner = &username;
When you run this SQL, you will be prompted to enter the username. Enter
username within quotes, typically username in Capitals.
Enjoy,
CM
In article <6ggkv1$qpf$1_at_nnrp1.dejanews.com>,
laz777_at_semaphore.com wrote:
>
> In article <6ggesk$iln$1_at_nnrp1.dejanews.com>,
> dgc_at_usa.net wrote:
> >
> > Trying to do the following:
> > Create a script that reports on all objects owned by a specific user.
> > The username is a parameter. The report includes object_type, object_name
> > , when it was created and status.
> >
> > I would be really thankful if someone could help me.
> >
> > dgc_at_usa.net
>
> Try the dba_objects table.
>
> -Todd
>
>
-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/ Now offering spam-free web-based newsreading Received on Thu Apr 09 1998 - 17:51:33 CDT
![]() |
![]() |