These instructions install ruby and rubygems from source, not from RPMs. For instructions on installing from RPMs, look at something like http://wiki.opscode.com/display/chef/Installation+on+RHEL+and+CentOS+5+with+RPMs or http://mykestubbs.com/blog/2010/03/chef-installation-on-centos-54.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.itnaf.oim11g.test.delete; | |
import java.sql.*; | |
public class DeleteUsers { | |
// JDBC driver name and database URL | |
static final String JDBC_DRIVER = "oracle.jdbc.driver.OracleDriver"; | |
String DB_URL = "jdbc:oracle:thin:@host:port:sid"; | |
String[] USERS_TO_IGNORE = { "XELOPERATOR", "XELSYSADM", "OIMOPERATOR", "WEBLOGIC" }; |