Products | Versions |
---|---|
TIBCO BPM Enterprise (formerly TIBCO ActiveMatrix BPM) | - |
Not Applicable | - |
Description:
Installing AMX BPM on Oracle 12c requires some manual changes in order to work in a plugable scenario.
1), Tablespace access is no longer enabled by default. This can result in ORA-01950: no privileges on tablespace in SystemNode.log.
Work around:
1). grant unlimited tablespace to <username>; This is done in the example script below.
2). There are two or more places that you will need to create users. There may be more than this. The same user creation steps will need to be used for each.For all of these you need an extra step before the create user command in each SQL session.
alter system set processes=320 scope=spfile;
alter system set open_cursors=10000 scope=spfile;- edit createdb-admin.sql and insert this at the top of the file. Do not put any extra blank lines in
- edit createdb-admin-bds.sql and insert this at the top of the file. Do not put any extra blank lines in
Once this is done, go through and run the relevant scripts in the following order. Commented out items only apply for separate bds schemas.