Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: [PL/SQL] getting cursor metadata

Re: [PL/SQL] getting cursor metadata

From: Daniel Morgan <dmorgan_at_exesolutions.com>
Date: Thu, 03 Oct 2002 15:05:00 GMT
Message-ID: <3D9C5C83.BE0B1C0A@exesolutions.com>


Marcin Zawadzki wrote:

> How could I get cursor metadata from PL/SQL. ?
> In which system tables are stored information about open cursors ?
>
> MZ

On the theory that if you teach a man to fish he can feed himself ...

SELECT object_name, object_type
FROM all_objects
WHERE object_name LIKE '%OPEN%CURSOR%';

Modify this query to find information about anything in Oracle.

Daniel Morgan Received on Thu Oct 03 2002 - 10:05:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US