Caused by: org.ofbiz.core.entity.GenericEntityException: while inserting: [GenericEntity:ChangeItem][oldstring,2011-01-08 21:49:00.0][field,SLA Response Date][id,214675][fieldtype,custom][group,40719] (SQL Exception while executing the following:INSERT INTO changeitem (ID, groupid, FIELDTYPE, FIELD, OLDVALUE, OLDSTRING, NEWVALUE, NEWSTRING) VALUES (?, ?, ?, ?, ?, ?, ?, ?) (ORA-00018: maximum number of sessions exceeded
))
I'm not an authority on this, but I think ORA-00018 refers to the total number sessions the server accepts. Once this error is thrown, now new sessiosn on the server are permitted. to check your runing values log into your serve, on a linux system it's something like:
sqlplus '/as sysdba'
once logged in type:
show parameter sessions
show parameter processes
these two commands will list sessions / processes. if you need to increase then
cd $ORACLE_HOME/dbs
vi init.ora (or similar)
change value for session. then stop and restart the database.
http://www.techonthenet.com/oracle/errors/ora00018.php
offers "You can shut down Oracle, increase the SESSIONS parameter in the initialization parameter file, and restart Oracle."
Alternatively you could try to get JIRA to use LESS connections in its connection pool.
You can edit the <pool-size> parameter in <jirahome>/dbconfig.xml as Jamie suggests, but you should DECREASE it, not increase it.
If you prefer GUIs over config files, run bin/config.sh (config.bat on Windows) from your JIRA install directory.
Select the "Database" tab, edit the "Pool Size" and save.
You need to restart JIRA for the new DB settings to take effect.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could try increasing the <pool-size> parameter in <jirahome>/dbconfig.xml.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i am performing an upgrade on a unix box by an xml.file, i've configured the DB connection using the JIRA configuration tools, which saves all the detail on the config/server.xml file. browsing on the atlassian site i got to this page:
http://confluence.atlassian.com/display/JIRA043/Incorrect+database+type+specified
which says that:
"
This situation is potentially problematic, because the newer version of JIRA may have added tables or columns with incorrect data types to your existing database schema.
The safest solution is to start a new database, and import an XML backup made before the upgrade.
"
so how can i do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.