slnoINOUT BINARY_INTEGER, --oracle内部使用 op_nameINVARCHAR2DEFAULTNULL, -- 定义任务名称,最大64个字节 targetINBINARY_INTEGERDEFAULT0, --对应视图的target contextINBINARY_INTEGERDEFAULT0, --对应视图的context sofarINNUMBERDEFAULT0, --对应视图的sofar totalworkINNUMBERDEFAULT0, --对应视图的totalwork ...
Your applications should set the name of the module and name of the action automatically each time a user enters that module. The module name could be the name of a form in an Oracle Forms application, or the name of the code segment in an Oracle Precompilers application. The action name...
首頁PolarDB雲原生資料庫PolarDB PostgreSQL版(相容Oracle)開發指南(Oracle文法相容2.0)系統包DBMS_APPLICATION_INFO 搜尋幫助內容 DBMS_APPLICATION_INFO 更新時間:2024-07-06 03:37 產品 社區 DBMS_APPLICATION_INFO包記錄資料庫中正在執行的模組或事務的名稱,以便後續跟蹤模組的效能以及調試使用。應用程式允許系統管理員跟...
Your applications should set the name of the module and name of the action automatically each time a user enters that module. The module name could be the name of a form in an Oracle Forms application, or the name of the code segment in an Oracle Precompilers application. The action name...
dbms_application_info 包,用于交换环境中执行处理的时间点信息。 让一个长时间运行的PL/SQL程序提供处理信息。以下代码段每隔1000 行记录就更新应用程序的信息,内容主要是处理的记录数和花费的时间。 conn plsql/plsql SQL> create table s_employee_test as select * from hr.employees; ...
Oracle兼容性说明 连接数据库集群 客户端和驱动 基本操作 数据类型 运算符 外部表 临时表 内置包 DBMS_ALERT DBMS_APPLICATION_INFO DBMS_AQ DBMS_AQADM DBMS_CRYPTO DBMS_JOB DBMS_LOB DBMS_LOCK DBMS_METADATA DBMS_MVIEW DBMS_OBFUSCATION_TOOLKIT DBMS_OUTPUT DBMS_PIPE DBMS_REDACT DBMS_PROFILER DBMS_RANDOM ...
DBMS_APPLICATION_INFO.SET_ACTION ( action_nameINVARCHAR2); 参数 参数 说明 action_name 当前模块中当前操作的名称。当此操作终止时,如果存在其他操作,则使用下一个操作调用当前存储过程。否则,调用NULL。 说明 操作名称长度超过64个字节将被截断。 SET_CLIENT_INFO ...
DBMS_SESSION : Managing Sessions From a Connection Pool in Oracle Databases SET_MODULE Once a program makes a connection to the database it should register itself as a module using theSET_MODULEprocedure. In doing so it also sets the initial action. The following code shows how to register ...
dbms_application_info.read_module:允许你从vsession中读取主程序(如包)和你的过程的名称SYS@orclasm>descdbmsapplicationinfoPROCEDUREREADCLIENTINFOArgumentNameTypeIn/OutDefault?−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−...
10 FOR i IN 1..100 11 LOOP 12 execute immediate 'INSERT INTO pp_test(c1) VALUES(:X)' USING i; 13 END LOOP; 14 dbms_application_info.read_module(l_mod_name,l_act_name); 15 dbms_output.put_line('mod_name='||l_mod_name); ...