Hi, Since I am new to oracle , please tell me what different ways to find packages , store procedures, triggers ,functions, indexes, tablespaces Thanks
+1
A:
The following statement gives you an overview of all database objects in the current user:
SELECT
object_name,
object_type
FROM
user_objects;
If you are searching for documentation, you can look at Morgan's Library
Tim Krüger
2010-03-11 12:37:27
There are also a variety of other data dictionary views that may be useful, eg. `USER_PROCEDURES`, `USER_TRIGGERS`, `USER_INDEXES`
ar
2010-03-11 12:39:17
+1
A:
You can download Oracle SQL Developer free. This allows you to explore all the objects in your database via a simple interface.
Tony Andrews
2010-03-11 12:42:17