views:

39

answers:

2

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
There are also a variety of other data dictionary views that may be useful, eg. `USER_PROCEDURES`, `USER_TRIGGERS`, `USER_INDEXES`
ar
+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