Who referenced current user's objects : user_dependencies « System Tables Views « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » System Tables Views » user_dependencies 
Who referenced current user's objects
    

SQL>
SQL> create table t int );

Table created.

SQL>
SQL> create or replace view v as select from t;

View created.

SQL>
SQL> create or replace procedure p
  2  as
  3  begin
  4          for x in select from )
  5          loop
  6                  null;
  7          end loop;
  8  end;
  9  /


SQL>
SQL> create or replace function return number
  2  as
  3          countValue number;
  4  begin
  5          select count(*into countValue from t;
  6          return countValue;
  7  end;
  8  /

Function created.

SQL>
SQL>
SQL> create or replace procedure p2
  2  as
  3  begin
  4          p;
  5  end;
  6  /

Warning: Procedure created with compilation errors.

SQL>
SQL>
SQL> select name, type, referenced_name, referenced_type
  2    from user_dependencies
  3   where referenced_owner = user  and rownum < 20
  4   order by name
  5  /

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
COMPILEERROR                   PROCEDURE
DUAL
NON-EXISTENT

COMPILE_ERROR                  PROCEDURE
DUAL
NON-EXISTENT

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------

DEFINER_RIGHTS                 PACKAGE BODY
DUAL
NON-EXISTENT

LOOPING_EXAMPLE                PROCEDURE
DBMS_OUTPUT

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
NON-EXISTENT

MONTH_GENERATOR                FUNCTION
SQLMONTH_TABLETYPE
TYPE

MONTH_GENERATOR_PIPED          FUNCTION

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
SQLMONTH_TABLETYPE
TYPE

ORD_GENERATOR                  FUNCTION
ORD_TYPE
TYPE


NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
ORD_GENERATOR                  FUNCTION
ORD_TABLE
TYPE

ORD_GENERATOR_PIPED            FUNCTION
ORD_TABLE
TYPE

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------

ORD_GENERATOR_PIPED            FUNCTION
ORD_TYPE
TYPE

ORD_TABLE                      TYPE
ORD_TYPE

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
TYPE

PRODUCT_PACKAGE                PACKAGE BODY
PRODUCT_PACKAGE
PACKAGE

P_ADD_ORDERS                   PROCEDURE

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
DUAL
NON-EXISTENT

P_ADD_ORDERS                   PROCEDURE
ORDER_SEQ
NON-EXISTENT


NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
P_ADD_ORDERS                   PROCEDURE
P_ADD_ITEMS
PROCEDURE

P_ADD_PROD                     PROCEDURE
PRODUCT_SEQ
NON-EXISTENT

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------

READCLOB                       PROCEDURE
DBMS_OUTPUT
NON-EXISTENT

TEMPERATURE_CONVERSION         PROCEDURE
DBMS_OUTPUT

NAME                           TYPE
------------------------------ -----------------
REFERENCED_NAME
----------------------------------------------------------------
REFERENCED_TYPE
-----------------
NON-EXISTENT

USE_G2                         FUNCTION
DUAL
NON-EXISTENT


19 rows selected.

SQL>
SQL> drop table t;

Table dropped.

   
    
    
    
  
Related examples in the same category
1. Query user_dependencies for cross references
2. Check dependencies for procedure
3. Check package reference
4. Check user dependencies for a given table
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.