activiti刪除表,重建

2021-08-16 19:38:38 字數 1648 閱讀 8924

刪除一下表:

drop table act_evt_log;

drop table act_ge_property;

drop table act_hi_actinst;

drop table act_hi_attachment;

drop table act_hi_comment;

drop table act_hi_detail;

drop table act_hi_identitylink;

drop table act_hi_procinst;

drop table act_hi_taskinst;

drop table act_hi_varinst;

drop table act_id_info;

drop table act_id_membership;

drop table act_id_user;

drop table act_procdef_info;

drop table act_re_model;

drop table act_ru_deadletter_job;

drop table act_ru_event_subscr;

drop table act_ru_identitylink;

drop table act_ru_job;

drop table act_ru_suspended_job;

drop table act_ru_task;

drop table act_ru_timer_job;

drop table act_ru_variable;

drop table act_ge_bytearray;

drop table act_id_group;

drop table act_re_deployment;

drop table act_ru_execution;

drop table act_re_procdef;

2、更新流程,使用新建流程

// 建立乙個流程引擎配置物件  

processengineconfiguration conf = processengineconfiguration.createstandaloneprocessengineconfiguration();

// 設定資料來源資訊

conf.setjdbcdriver("com.mysql.jdbc.driver");

conf.setjdbcurl("jdbc:mysql:");

conf.setjdbcusername("root");

conf.setjdbcpassword("root");

// 設定自動建表

conf.setdatabaseschemaupdate(「create-drop」);

// 建立乙個流程引擎物件,在建立流程引擎物件過程中會自動建表

processengine processengine = conf.buildprocessengine();

system.out.println("processengine:"+ processengine);

oracle 刪除和重建表空間指令碼

除錯資料庫生成指令碼,需要頻繁重建表空間 清除原有表空間 重建表空間和使用者 declare tbs varchar2 100 ts data 表空間名稱 tbs tpm varchar2 100 data temp 臨時表空間名稱 uname varchar2 100 user 使用者名稱 密碼為...

activiti 關於自動建表

activiti裡有sql語句,可以直接在資料庫執行,但是activiti可以配置自動執行,如下 beanid processengineconfiguration class org.activiti.spring.springprocessengineconfiguration property...

activiti中其他的表

這裡只有乙個表act evt log。act evt log 時間日誌表。字段描述 型別not null 備註log nr 主鍵number 19 yestype 型別nvarchar2 64 proc def id 流程定義id nvarchar2 64 proc inst id 流程例項id n...