#流程部署表
select * from
'act_re_deployment'
#流程定義表
select * from
'act_re_prodef'
#資源檔案表
select * from
'act_ge_bytearry'
#系統配置表
select * from
'act_ge_property'
#流程例項執行時,所執行的物件表
select * from
'act_ru_execution'
#流程例項執行時,身份聯絡表
select * from
'act_ru_identitylink'
#流程例項執行時,使用者任務表
select * from
'act_ru_task'
#活動節點歷史表
select * from
'act_hi_actinst'
#身份聯絡表 歷史
select * from
'act_hi_identitylink'
#流程例項表 歷史
select * from
'act_hi_procinst'
#歷史任務表
select * from
'act_hi_taskinst'
#執行時的表都清空了
#歷史表 資料修改 或者 增加資料
了解Activiti框架提供的23張表
activiti的後台是有資料庫的支援的,所有的表都以act 開頭。第二部分是表示用途的兩個字母標識。用途也和服務的api對應。act re re 表示repository。這個字首的表包含了流程定義和流程靜態資源 規則等等 act ru ru 表示runtime。這些是執行時的表,包含流程例項,任...
在Oracle儲存過程中需要遍歷一張表
用forloop替代cursor oracle的使用技巧 在oracle儲存過程中需要遍歷一張表,應該怎樣做。大多少的人第乙個念頭就是cursor。比如 create or replace procedure studycursor resulst out integer is v tablenam...
詳解在MySQL中建立表的教程
建立表的命令要求 語法 下面是通用的sql語法來建立乙個mysql表 create table table name colum程式設計客棧n name column type 現在,我們將建立下面的教程資料庫表中。tutorials tbl tutoria程式設計客棧l id int not nu...