mysql

### 工作流相关表增加表注释SQLalter table act_evt_log comment '事件日志表–EventLogEntryEntityImpl';
alter table act_ge_bytearray comment '流程xml存储表';
alter table act_ge_property comment '流程版本信息,禁止私自修改';
alter table act_hi_actinst comment '历史节点信息表–HistoricActivityInstanceEntityImpl';
alter table act_hi_attachment comment '附件表–AttachmentEntityImpl';
alter table act_hi_comment comment '评论表–CommentEntityImpl';
alter table act_hi_detail comment '历史的流程运行中的细节信息–HistoricDetailEntityImpl';
alter table act_hi_identitylink comment '历史参与者表–HistoricIdentityLinkEntityImpl';
alter table act_hi_procinst comment '历史流程实例表–HistoricProcessInstanceEntityImpl';
alter table act_hi_taskinst comment '历史任务表–HistoricTaskInstanceEntityImpl';
alter table act_hi_varinst comment '历史变量–HistoricVariableInstanceEntityImpl';
alter table act_id_bytearray comment '二进制数据表(flowable)–';
alter table act_id_group comment '群组表(用于Web设计器)–GroupEntityImpl';
alter table act_id_info comment '用户扩展表–IdentityInfoEntityImpl';
alter table act_id_membership comment '用户与群主关系表–MemberShipEntityImpl';
alter table act_id_priv comment '权限表(flowable)–';
alter table act_id_priv_mapping comment '用户或组权限关系表(flowable)–';
alter table act_id_property comment '属性表(flowable)–';
alter table act_id_token comment '系统登录日志表(flowable)–';
alter table act_id_user comment '用户基本信息表–UserEntityImpl';
alter table act_procdef_info comment '流程定义动态改变信息表–ProcessDefinitionInfoEntityImpl';
alter table act_re_deployment comment '流程部署表–DeploymentEntityImpl';
alter table act_re_model comment '流程设计基本信息';
alter table act_re_procdef comment '流程定义信息表–ProcessDefinitionEntityImpl';
alter table act_ru_actinst comment '运行时节点信息表–ActivityInstanceEntityImpl';
alter table act_ru_deadletter_job comment '死信表–DeadLetterJobEntityImpl';
alter table act_ru_event_subscr comment '事件订阅表–EventSubscriptionEntityImpl';
alter table act_ru_execution comment '流程实例与分支执行表–ExecutionEntityImpl';
alter table act_ru_history_job comment '历史作业表(flowable)–';
alter table act_ru_identitylink comment '参与者相关信息表–IdentityLinkEntityImpl';
alter table act_ru_job comment '作业表–JobEntityImpl';
alter table act_ru_suspended_job comment '暂停作业表–SuspendedJobEntityImpl';
alter table act_ru_task comment '用户任务表–TaskEntityImpl';
alter table act_ru_timer_job comment '定时器表–TimerJobEntityImpl';
alter table act_ru_variable comment '变量信息–VariableInstanceEntityImpl';

oracle

### 工作流相关表增加表注释SQLCOMMENT ON act_evt_log IS '事件日志表–EventLogEntryEntityImpl';
COMMENT ON act_ge_bytearray IS '流程xml存储表';
COMMENT ON act_ge_property IS '流程版本信息,禁止私自修改';
COMMENT ON act_hi_actinst IS '历史节点信息表–HistoricActivityInstanceEntityImpl';
COMMENT ON act_hi_attachment IS '附件表–AttachmentEntityImpl';
COMMENT ON act_hi_IS IS '评论表–CommentEntityImpl';
COMMENT ON act_hi_detail IS '历史的流程运行中的细节信息–HistoricDetailEntityImpl';
COMMENT ON act_hi_identitylink IS '历史参与者表–HistoricIdentityLinkEntityImpl';
COMMENT ON act_hi_procinst IS '历史流程实例表–HistoricProcessInstanceEntityImpl';
COMMENT ON act_hi_taskinst IS '历史任务表–HistoricTaskInstanceEntityImpl';
COMMENT ON act_hi_varinst IS '历史变量–HistoricVariableInstanceEntityImpl';
COMMENT ON act_id_bytearray IS '二进制数据表(flowable)–';
COMMENT ON act_id_group IS '群组表(用于Web设计器)–GroupEntityImpl';
COMMENT ON act_id_info IS '用户扩展表–IdentityInfoEntityImpl';
COMMENT ON act_id_membership IS '用户与群主关系表–MemberShipEntityImpl';
COMMENT ON act_id_priv IS '权限表(flowable)–';
COMMENT ON act_id_priv_mapping IS '用户或组权限关系表(flowable)–';
COMMENT ON act_id_property IS '属性表(flowable)–';
COMMENT ON act_id_token IS '系统登录日志表(flowable)–';
COMMENT ON act_id_user IS '用户基本信息表–UserEntityImpl';
COMMENT ON act_procdef_info IS '流程定义动态改变信息表–ProcessDefinitionInfoEntityImpl';
COMMENT ON act_re_deployment IS '流程部署表–DeploymentEntityImpl';
COMMENT ON act_re_model IS '流程设计基本信息';
COMMENT ON act_re_procdef IS '流程定义信息表–ProcessDefinitionEntityImpl';
COMMENT ON act_ru_actinst IS '运行时节点信息表–ActivityInstanceEntityImpl';
COMMENT ON act_ru_deadletter_job IS '死信表–DeadLetterJobEntityImpl';
COMMENT ON act_ru_event_subscr IS '事件订阅表–EventSubscriptionEntityImpl';
COMMENT ON act_ru_execution IS '流程实例与分支执行表–ExecutionEntityImpl';
COMMENT ON act_ru_history_job IS '历史作业表(flowable)–';
COMMENT ON act_ru_identitylink IS '参与者相关信息表–IdentityLinkEntityImpl';
COMMENT ON act_ru_job IS '作业表–JobEntityImpl';
COMMENT ON act_ru_suspended_job IS '暂停作业表–SuspendedJobEntityImpl';
COMMENT ON act_ru_task IS '用户任务表–TaskEntityImpl';
COMMENT ON act_ru_timer_job IS '定时器表–TimerJobEntityImpl';
COMMENT ON act_ru_variable IS '变量信息–VariableInstanceEntityImpl';

flowable 表名sql mysql和oracle相关推荐

  1. MYSQL批量修改表前缀与表名sql语句

    修改表名 ALTER TABLE 原表名 RENAME TO 新表名; 一句SQL语句只能修改一张表 show tables; 1. SELECTCONCAT('ALTER TABLE ',table ...

  2. oracle可以更改表名,sql – 更改Oracle表名

    我正在尝试在oracle中更改表名. 我首先运行此脚本来声明表 CREATE TABLE CUSTOMER ( C_ID NUMBER(6,0), C_LAST VARCHAR2(25), C_FIR ...

  3. oracle表名最大长度6,Oracle中表名的最大长度是多less?

    在Oracle 12.2及更高版本中,最大对象名称长度是128个字节. 在Oracle 12.1及更高版本中,最大对象名称长度是30个字节. 教一个人钓鱼 注意数据types和大小 >descr ...

  4. MySQL 表名与MySQL关键字冲突导致插入数据BadSqlGrammarException

    背景:公司要求把亚马逊订单数据导入数据库,我在MySQL上创建了一个order表,后端使用mybatis plus插入数据时报错. 发现问题: 错误信息: org.springframework.jd ...

  5. mysql查询库中所有的表名,mysql查询指定表中的所有字段名及其相关信息

    SHOW TABLES FROM jzee; 可以在hibernate中作为sql语句查询出结果. 从jzee库中查出所有表名. 查询结果: select COLUMN_NAME,COLUMN_COM ...

  6. php连接mysql指定表名_php mysql获取指定数据库所有表名_PHP教程

    $cn = mysql_connect('localhost','root','root'); mysql_select_db('test',$cn); print_r(get_tables()); ...

  7. oracle中year类型吗,为什么表名this_year_end+next_year在Oracle数据库中无效?()

    下列关于妇好的说法,不正确的一项是( ). 一个初创团队要考虑有哪些类型的角色? π线和σ线在垂直于磁场方向传播时,是什么偏振态的光? 分析程序:下列程序执行后的结果是什么?#include int ...

  8. 用sql改oracle表结构,SQL server 表结构转Oracle SQL脚本

    SQL server 表结构转Oracle SQL脚本 /****** Object: StoredProcedure [dbo].[getOracle] Script Date: 2019/7/25 ...

  9. mysql基本表管理sql语句

    管理表记录 insert into 表名 values(字段值列表) 增 select 字段名 -字段N from 表名: 查 select 字段名.. 字段N from表名 where 条件 upd ...

最新文章

  1. Openfire XMPP Smack RTC IM 即时通讯 聊天 MD
  2. 拯救 Out Of Memory,8个案例带你飞!
  3. 1. 初探MongoDB —— 介绍、安装和配置
  4. boost::fusion::make_fused用法的测试程序
  5. [CSS]BlendTrans滤镜
  6. 合理支配“财富”:经理人运用时间的12种典型模式
  7. Java 128陷阱+自动装箱拆箱
  8. 一线互联网常见的14个Java面试题,你颤抖了吗程序员...
  9. redis的5种数据结构和基本操作
  10. matlab2c使用c++实现matlab函数系列教程-normstat函数
  11. mysql必知必会第4版pdf百度网盘_SQL必知必会 第4版pdf
  12. 算法设计与分析第二章习题解答与学习指导(第2版)屈婉婷 刘田 张立昂 王捍贫编著 清华大学出版社
  13. 6163. 给定条件下构造矩阵——每日一难(phase2_day1)
  14. 下单点餐小程序解决方案
  15. 毁灭程序员效率的 15 个障碍
  16. 计算机维修5级,电脑芯片级维修教程
  17. dva是什么游戏_守望先锋DVA上分攻略 DVA使用技巧详解
  18. rgb sw 线主板接口在哪_自带RGB风扇,支持神光同步的九州风神小堡垒120I水冷散热器...
  19. 记一次DllNotFoundException(缺少vs C++ 环境导致)
  20. mybatis二级缓存

热门文章

  1. 清华大学开始招收高二学生,数学天赋是最重要的入围条件
  2. 一年时间!这位22岁的成电博士生,就达到毕业要求!
  3. 痛失大家!中国科学院院士陈家镛逝世
  4. 引发外国网友刷屏的“大国重器”到底什么水平?
  5. Reactor事件驱动的两种设计实现:面向对象 VS 函数式编程
  6. 看懂这5幅图,研发效能分析和改进就容易了
  7. 【详谈 Delta Lake 】系列技术专题 之 湖仓一体( Lakehouse )
  8. 0到1:闲鱼高复杂度高性能社区圈子开发实录
  9. Service Mesh 初体验
  10. 知己知彼,百战百胜!如何做好干系人管理