| ||||||||||||
|
Robert Glass
Thursday, September 26, 2013
Oracle Database 12c Event for the IC
Tuesday, March 24, 2009
Performance tuning Oracle XE
By default, Oracle Database XE is tuned to be tiny. Specifically, the system parameter for the number of processes is set to 40 by default and this settting is simply too low. Changing the PROCESSES setting to something larger corrects this bottleneck:
- Connect to XE as a SYSDBA.
- In SQL*Plus, enter the following command: alter system set processes=150 scope=spfile;
Below are some additional parameters worth adjusting to increase performance:
- alter system set session_cached_cursors=100 scope=spfile;
- alter system set session_max_open_files=100 scope=spfile;
- alter system set sessions=100 scope=spfile;
- alter system set license_max_sessions=100 scope=spfile;
- alter system set license_sessions_warning=100 scope=spfile;
Friday, June 1, 2007
FileUpload Exception when deploying to Oracle BPEL PM
There is a issue that arises with permissions to 'TEMP' folder and the opmn.xml file gets a hard coded file path during installation.
Work Around: manually change the 'TMP' variable, Ex: < id="TMP" value="C:\TMP\1">.
Work Around: manually change the 'TMP' variable, Ex: < id="TMP" value="C:\TMP\1">.
Monday, December 25, 2006
How to invoking Oracle BPEL Process via JSP
- Get form fields String email = request.getParameter("email");
String name = request.getParameter("name"); String amount = request.getParameter ("amount");
String model = request.getParameter("model"); String year = request.getParameter("year");
2. Create loan application XML document String xml = "
3. Initiate the BPEL process here // Connect to Oracle BPEL server Locator locator = new Locator("default","bpel"); IDeliveryService deliveryService = (IDeliveryService) locator.lookupService(IDeliveryService.SERVICE_NAME ); // Construct a normalized message and send to Oracle BPEL Process Manager NormalizedMessage nm = new NormalizedMessage(); nm.addPart("payload", xml); // Initiate the BPEL process deliveryService.post("MyLoanFlow", "initiate", nm);
Subscribe to:
Posts (Atom)