Most Popular Posts
Tag Archives: oracle
Automating Oracle 11.2 installation on RHEL 7
I’ve seen a few guides out there about how to install Oracle 11.2 on RHEL 7, but none that will run silently, end to end, with no clicking. Currently, if Oracle is required, we download a script in the kickstart … Continue reading
Oracle runstats oneliner (ok, two liner)
Use this to generate a runstats script for your Oracle system. Only works for 6.1 . Also very ugly 🙂 #!/bin/bash export PROFILE_PATH=/opt/WebSphere/wp_profile cat ${PROFILE_PATH}/ConfigEngine/properties/wkplc_comp.properties | grep DbUser | grep -v source | grep -v ‘#’ | grep -v DBA … Continue reading
Checking the version of the Oracle JDBC driver jar
How to check if you have the right version of the Oracle driver installed to use with WebSphere Portal. Two methods of checking this are discussed. Continue reading