A. System Catalogs : Extended System Catalogs : Sample Queries for the Extended System Catalogs for SQL : Example: Find Information on Every ABF Application
 
Share this page                  
Example: Find Information on Every ABF Application
This query finds information on every ABF application in the database.
select appname=object_name, object_owner
  from ii_objects o
  where o.object_class = 2001
  /* object_class 2001 = "abf application" */