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: command_type field in v$sql

Re: command_type field in v$sql

From: Michel Cadot <micadot_at_netcourrier.com>
Date: Wed, 5 Sep 2001 15:50:08 +0200
Message-ID: <9n5aig$fk1$1@s1.read.news.oleane.net>

"Frédéric Ruffet" <fruffet_at_kaptech.com> a écrit dans le message news: 9n4uqe$1oqs$1_at_news4.isdnet.net...
> Hi,
>
> Could anyone tell me where I could find the signification of the values of
> the command_type field in the v$sql dynamic table ?
>
> Frédéric Ruffet - fruffet_at_kaptech.com
>
>
>

in the audit_actions view:

v815> select distinct s.command_type, a.name   2 from audit_actions a, v$sql s where a.action=s.command_type;

COMMAND_TYPE NAME

------------ ---------------------------
           2 INSERT
           3 SELECT
           6 UPDATE
           7 DELETE
          15 ALTER TABLE
          42 ALTER SESSION
          44 COMMIT
          47 PL/SQL EXECUTE

8 rows selected.

--
Hope this helps
Michel
Received on Wed Sep 05 2001 - 08:50:08 CDT

Original text of this message

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