Posts

Showing posts from February, 2015

Deinstall Oracle SOA 12c

Image
Sometimes you might need to look for completeness when it is not found in your installation then we go for deinstall and re-install. Here Oracle Uninstller validates all memory checks then go for all products that installed as per the OracleInventory removal of SOA 12c. For any Linux environments following command will works. cd $ORACLE_HOME/oui/bin ./deinstall.sh Above will take 4 steps then completes. You might need manual remove command... Before proceedging to the following step double check $ rm -rf Oracle

SOA Database Adapter experiment

Image
Hey, Here I am going to create a Database user which can be used for demonstrate the database adapter. grant connect, resource to soademo identified by soademo; create a table CREATE TABLE CREDITCARDINFO ( SSN VARCHAR2(15) NOT NULL, FIRST_NAME VARCHAR2(30), LAST_NAME VARCHAR2(30), CCNUMBER VARCHAR2(20) NOT NULL, CREDITRATING NUMBER, STATUS VARCHAR2(20) NOT NULL ); create a Table using XE Apex tool Insert records in to table Now, lets do insert operation on the table that was created following records for testing purpose insert into CREDITCARDINFO VALUES ( '111-11-1111', 'Neena', 'Kochhar', '1234-1234-1234-1234', '3' , 'VALID' ); insert into CREDITCARDINFO VALUES ( '222-22-2222', 'Steven', 'King', '5678-5678-5678-5678', '4' , 'VALID' ); insert into CREDITCARDINFO VALUES ( '333-33-3333', 'Lex', 'Devarakonda...

Installing SOA 12c in Ubuntu

Image
Most of the realtime environments would be on Unix or Linux environments. Just I wish to try all the pains and issues to see while learning this. Installing SOA 12c quick start on Xubuntu 14 Before we install the SOA we need to have the efficient System setup. 40GB hard disk, create 'wladmin' as a Unix user where we can perform installation. Step 1. Install Oracle JDK Default JDK is not available in XUbuntu. Oracle JDK latest version can be downloaded and installed from the Ubuntu repository. Make sure that your internet work on the system where you wish to install.  Here I am using a Oracle VirtualBox guest as Xubuntu, enabled NAT network adapter to have internet on my system. You can use the below commands to install JDK-7 for WebLogic 12c installation this will work for regular Ubuntu and also for XUbuntu. sudo add-apt-repository ppa:webupd8team/java  sudo apt-get update  sudo apt-get install oracle-java7-installer confirm the java version root@w...