Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Description of DEF$_AQCALL
Spendius wrote:
> Hi,
> I couldn't manage to find any description of this
> table (nor of DEF$_AQERROR): does someone know
> what the columns of these tables mean ?
>
> Thanks EVER SO MUCH to anybody who can help...
> Regards.
SELECT owner, object_type
FROM dba_objects
WHERE object_name = 'DEF$_AQCALL';
conn system/<pwd>
SELECT dbms_metadata.get_ddl('TABLE', 'DEF$_AQCALL') FROM dual;
As to what the columns mean they are created using the DBMS_AQADM package so standard definitions apply.
-- Daniel A. Morgan http://www.psoug.org damorgan_at_x.washington.edu (replace x with u to respond)Received on Tue Oct 04 2005 - 13:10:31 CDT
![]() |
![]() |