Oracle, Oracle SOA Suite May 26, 2010 1

How to uninstall Oracle SOA Suite 11g & WebLogic Server

This short demo demonstrates how to uninstall Oracle SOA Suite 11g including WebLogic platform and database schemas.

  • Go to uninstall directory of SOA Suite installation and execute deinstallation script:
[[email protected] uninstall]$ cd $SOA_ORACLE_HOME/Middleware/utils/uninstall/
[[email protected] uninstall]$ ./uninstall.sh


soa_1 soa_2 soa_3 soa_4

  • Once uninstall is complete, remove SOA home directory from filesystem:
[[email protected] /]$rm -rf /u01/app/oracle/product/Middleware
  • Clean up a database by executing the following statements:
--Schemas:
SQL> drop user "DEV_MDS" cascade;
SQL> drop user "DEV_ORABAM" cascade;
SQL> drop user "DEV_ORASDPM" cascade;
SQL> drop user "DEV_SOAINFRA" cascade;
SQL> delete from SCHEMA_VERSION_REGISTRY where OWNER like 'DEV%';
SQL> commit;

--Tablespaces and datafiles:
SQL>DROP TABLESPACE DEV_IAS_ORASDPM INCLUDING CONTENTS AND DATAFILES;
SQL>DROP TABLESPACE DEV_IAS_TEMP INCLUDING CONTENTS AND DATAFILES;
SQL>DROP TABLESPACE DEV_MDS INCLUDING CONTENTS AND DATAFILES;
SQL>DROP TABLESPACE DEV_ORABAM INCLUDING CONTENTS AND DATAFILES;
SQL>DROP TABLESPACE DEV_SOAINFRA INCLUDING CONTENTS AND DATAFILES;
cascade

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close