Thursday, September 26, 2013

Oracle Database 12c Event for the IC

clip_image001
Discover the Latest Breakthroughs
As Intelligence Community (IC) organizations and system integrators embrace the cloud, they seek technologies that will accelerate program delivery, minimize risk to the mission and improve the operational agility and effectiveness of their systems. With over 500 major enhancements in security, big data support, and availability, Oracle Database 12c is the next-generation database designed to meet these needs and more:

  • Facilitate IC consolidation and cloud deployments
  • Ensure data privacy, protect against insider threats, and comply with IC requirements such as ICD-503
  • Automate and optimize the lifecycle of data
  • Improve application continuity to protect mission critical systems

Join us at this invite only Oracle Technology Day to learn which of the new features and options are most relevant to the IC and which require additional licensing. With Oracle Database 12c, the IC is well equipped to build next generation systems that will cut their costs and provide more capability for collecting and processing more intelligence information.
Register to Attend
October 9th, 2013
08:00 am-11:00am
Hyatt Place Dulles South
4994 Westone Plaza
Chantilly, VA 20151
Featured Presenter
clip_image002
Darryl McGowan
Master Principal Solutions Architect, Oracle National Security
clip_image003 Join the Conversation on Twitter
#DB12c
For over 17 years, Darryl McGowan a Master Principal Solutions Architect has been a key contributor to the Intelligence Community while working for Oracle. He lives in Denver, CO primarily serving as a trusted advisor to systems integrators, but also providing problem resolution, technology training, software demonstrations, and program engineering support.
Register to attend this important event or by contacting Robert Glass (703) 364-2466 robert.glass@oracle.com and plug into the power of the cloud.
Register now
clip_image004
clip_image005
Copyright © 2013, Oracle and/or its affiliates.
All rights reserved.
Contact Us | Legal Notices and Terms of Use | Privacy Statement

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:

  1. Connect to XE as a SYSDBA.
  2. 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">.

Monday, December 25, 2006

How to invoking Oracle BPEL Process via JSP


  1. 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 = "" + "" + ssn + "" + "" + email + "" + "" + name + "" + "" + amount + " " + "" + model + " " + "" + year + " " + " " + "";



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);