中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

v$session中command字段的含義解析是怎樣的

發布時間:2021-11-30 15:33:25 來源:億速云 閱讀:172 作者:柒染 欄目:關系型數據庫

本篇文章給大家分享的是有關v$session中command字段的含義解析是怎樣的,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

以下函數解析視圖v$session中command字段的含義
create or replace function lln_session_cmd_info(p_cmd in number default 0)

    return varchar2 is

    v_retinfo varchar2(64);

begin

    select case p_cmd

               when 0 then

                '0'

               when 1 then

                'CREATE TABLE'

               when 2 then

                'INSERT'

               when 3 then

                'SELECT'

               when 4 then

                'CREATE CLUSTER'

               when 5 then

                'ALTER CLUSTER'

               when 6 then

                'UPDATE'

               when 7 then

                'DELETE'

               when 8 then

                'DROP CLUSTER'

               when 9 then

                'CREATE INDEX'

               when 10 then

                'DROP INDEX'

               when 11 then

                'ALTER INDEX'

               when 12 then

                'DROP TABLE'

               when 13 then

                'CREATE SEQUENCE'

               when 14 then

                'ALTER SEQUENCE'

               when 15 then

                'ALTER TABLE'

               when 16 then

                'DROP SEQUENCE'

               when 17 then

                'GRANT OBJECT'

               when 18 then

                'REVOKE OBJECT'

               when 19 then

                'CREATE SYNONYM'

               when 20 then

                'DROP SYNONYM'

               when 21 then

                'CREATE VIEW'

               when 22 then

                'DROP VIEW'

               when 23 then

                'VALIDATE INDEX'

               when 24 then

                'CREATE PROCEDURE'

               when 25 then

                'ALTER PROCEDURE'

               when 26 then

                'LOCK'

               when 27 then

                'NO-OP'

               when 28 then

                'RENAME'

               when 29 then

                'COMMENT'

               when 30 then

                'AUDIT OBJECT'

               when 31 then

                'NOAUDIT OBJECT'

               when 32 then

                'CREATE DATABASE LINK'

               when 33 then

                'DROP DATABASE LINK'

               when 34 then

                'CREATE DATABASE'

               when 35 then

                'ALTER DATABASE'

               when 36 then

                'CREATE ROLLBACK SEG'

               when 37 then

                'ALTER ROLLBACK SEG'

               when 38 then

                'DROP ROLLBACK SEG'

               when 39 then

                'CREATE TABLESPACE'

               when 40 then

                'ALTER TABLESPACE'

               when 41 then

                'DROP TABLESPACE'

               when 42 then

                'ALTER SESSION'

               when 43 then

                'ALTER USER'

               when 44 then

                'COMMIT'

               when 45 then

                'ROLLBACK'

               when 46 then

                'SAVEPOINT'

               when 47 then

                'PL/SQL EXECUTE'

               when 48 then

                'SET TRANSACTION'

               when 49 then

                'ALTER SYSTEM'

               when 50 then

                'EXPLAIN'

               when 51 then

                'CREATE USER'

               when 52 then

                'CREATE ROLE'

               when 53 then

                'DROP USER'

               when 54 then

                'DROP ROLE'

               when 55 then

                'SET ROLE'

               when 56 then

                'CREATE SCHEMA'

               when 57 then

                'CREATE CONTROL FILE'

               when 59 then

                'CREATE TRIGGER'

               when 60 then

                'ALTER TRIGGER'

               when 61 then

                'DROP TRIGGER'

               when 62 then

                'ANALYZE TABLE'

               when 63 then

                'ANALYZE INDEX'

               when 64 then

                'ANALYZE CLUSTER'

               when 65 then

                'CREATE PROFILE'

               when 66 then

                'DROP PROFILE'

               when 67 then

                'ALTER PROFILE'

               when 68 then

                'DROP PROCEDURE'

               when 70 then

                'ALTER RESOURCE COST'

               when 71 then

                'CREATE SNAPSHOT LOG'

               when 72 then

                'ALTER SNAPSHOT LOG'

               when 73 then

                'DROP SNAPSHOT LOG'

               when 74 then

                'CREATE SNAPSHOT'

               when 75 then

                'ALTER SNAPSHOT'

               when 76 then

                'DROP SNAPSHOT'

               when 77 then

                'CREATE TYPE'

               when 78 then

                'DROP TYPE'

               when 79 then

                'ALTER ROLE'

               when 80 then

                'ALTER TYPE'

               when 81 then

                'CREATE TYPE BODY'

               when 82 then

                'ALTER TYPE BODY'

               when 83 then

                'DROP TYPE BODY'

               when 84 then

                'DROP LIBRARY'

               when 85 then

                'TRUNCATE TABLE'

               when 86 then

                'TRUNCATE CLUSTER'

               when 91 then

                'CREATE FUNCTION'

               when 92 then

                'ALTER FUNCTION'

               when 93 then

                'DROP FUNCTION'

               when 94 then

                'CREATE PACKAGE'

               when 95 then

                'ALTER PACKAGE'

               when 96 then

                'DROP PACKAGE'

               when 97 then

                'CREATE PACKAGE BODY'

               when 98 then

                'ALTER PACKAGE BODY'

               when 99 then

                'DROP PACKAGE BODY'

               when 100 then

                'LOGON'

               when 101 then

                'LOGOFF'

               when 102 then

                'LOGOFF BY CLEANUP'

               when 103 then

                'SESSION REC'

               when 104 then

                'SYSTEM AUDIT'

               when 105 then

                'SYSTEM NOAUDIT'

               when 106 then

                'AUDIT DEFAULT'

               when 107 then

                'NOAUDIT DEFAULT'

               when 108 then

                'SYSTEM GRANT'

               when 109 then

                'SYSTEM REVOKE'

               when 110 then

                'CREATE PUBLIC SYNONYM'

               when 111 then

                'DROP PUBLIC SYNONYM'

               when 112 then

                'CREATE PUBLIC DATABASE LINK'

               when 113 then

                'DROP PUBLIC DATABASE LINK'

               when 114 then

                'GRANT ROLE'

               when 115 then

                'REVOKE ROLE'

               when 116 then

                'EXECUTE PROCEDURE'

               when 117 then

                'USER COMMENT'

               when 118 then

                'ENABLE TRIGGER'

               when 119 then

                'DISABLE TRIGGER'

               when 120 then

                'ENABLE ALL TRIGGERS'

               when 121 then

                'DISABLE ALL TRIGGERS'

               when 122 then

                'NETWORK ERROR'

               when 123 then

                'EXECUTE TYPE'

               when 157 then

                'CREATE DIRECTORY'

               when 158 then

                'DROP DIRECTORY'

               when 159 then

                'CREATE LIBRARY'

               when 160 then

                'CREATE JAVA'

               when 161 then

                'ALTER JAVA'

               when 162 then

                'DROP JAVA'

               when 163 then

                'CREATE OPERATOR'

               when 164 then

                'CREATE INDEXTYPE'

               when 165 then

                'DROP INDEXTYPE'

               when 167 then

                'DROP OPERATOR'

               when 168 then

                'ASSOCIATE STATISTICS'

               when 169 then

                'DISASSOCIATE STATISTICS'

               when 170 then

                'CALL METHOD'

               when 171 then

                'CREATE SUMMARY'

               when 172 then

                'ALTER SUMMARY'

               when 173 then

                'DROP SUMMARY'

               when 174 then

                'CREATE DIMENSION'

               when 175 then

                'ALTER DIMENSION'

               when 176 then

                'DROP DIMENSION'

               when 177 then

                'CREATE CONTEXT'

               when 178 then

                'DROP CONTEXT'

               when 179 then

                'ALTER OUTLINE'

               when 180 then

                'CREATE OUTLINE'

               when 181 then

                'DROP OUTLINE'

               when 182 then

                'UPDATE INDEXES'

               when 183 then

                'ALTER OPERATOR'

               else

                'This function Not Supported'

           end

      into v_retinfo

      from dual;

    return v_retinfo;

end;

以上就是v$session中command字段的含義解析是怎樣的,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌兰县| 大城县| 沅江市| 炉霍县| 天气| 康马县| 化德县| 临沭县| 积石山| 黄陵县| 咸阳市| 灵宝市| 乌海市| 黄山市| 清徐县| 九龙县| 清水河县| 敖汉旗| 修水县| 定结县| 改则县| 武乡县| 镇江市| 濉溪县| 灵川县| 梁平县| 孟津县| 建平县| 宣城市| 岳普湖县| 巧家县| 龙山县| 邵武市| 河北区| 金沙县| 乌拉特前旗| 左权县| 兴安县| 大连市| 建阳市| 岳阳县|