Viewing all the objects from tablespace [message #54379] |
Thu, 14 November 2002 03:58 |
man
Messages: 5 Registered: November 2002
|
Junior Member |
|
|
Hi All,
I am bit niwbie to Oracle DBA
I have one simple Query
How to see all the database object for perticular user. i.e how user can see the diff object that he had created ,..Pl not with select * from tab;
Perticularly how he can see the various table objcet that has been created
Thanx and regards
|
|
|
|
|
|
Re: Viewing all the objects from tablespace [message #54393 is a reply to message #54379] |
Thu, 14 November 2002 19:26 |
Gilson
Messages: 7 Registered: November 2002
|
Junior Member |
|
|
Hi
You can use this query
select object_name, owner from dba_objects;
this query will give you all database objects, you can filter your information by this way
select object_name, owner from dba_objects
where owner = 'SCOTT';
Hope this helps you
Gilson
OCP - DBA
|
|
|