码迷,mamicode.com
首页 > 其他好文 > 详细

JBPM学习(四):执行流程实例

时间:2014-05-05 12:59:19      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:oracle

1、创建表空间

create tablespace TEST
logging
datafile ‘e:\app\administrator\oradata\orcl\TEST.dbf‘
size 100M
autoextend on
next 100M maxsize 4096M
extent management local;

2、创建用户并指定表空间

create use testuser identified by password
default tablespace TEST
temporary tablespace temp;

3、授权

grant connect  to testuser;
grant dba to testuser;
grant role to testuser;




JBPM学习(四):执行流程实例,布布扣,bubuko.com

JBPM学习(四):执行流程实例

标签:oracle

原文地址:http://blog.csdn.net/v123411739/article/details/24904037

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!