find all database objects in a form [message #172452] |
Tue, 16 May 2006 09:56 |
kritikverma
Messages: 22 Registered: January 2006 Location: Jamshedpur, India
|
Junior Member |
|
|
I want a way to find all the database objects in a form that is used anywhere in the forms. These database objects include tables, views, synonyms, procedures, functions etc.
I have the source file i.e. fmb and fmx as well.
Please help.
Kriti
|
|
|
|
|
Re: find all database objects in a form [message #172687 is a reply to message #172526] |
Wed, 17 May 2006 11:46 |
vijaykkiran
Messages: 5 Registered: April 2006
|
Junior Member |
|
|
try out this query in the sql prompt..
sql> select object_name,object_type from user_objects order by object_type;
this will display all the objects created in the current user_schema level.. so what are the objects created in that user it will display all of them.. for more columns in that table use this ..
sql> desc user_objects;
from this u can see more details of that objects...
|
|
|
|
|
|