apm_load_in_sqlplus

one of the documented procedures in this installation of the ACS
Usage:
apm_load_in_sqlplus   path
What it does:
Executes a file in SQL*Plus, returning any output or error.
Defined in: /web/philip/packages/acs-core/apm-procs.tcl

Source code:


    global env

    set default_pool [ns_config "ns/server/[ns_info server]/db" DefaultPool]
    set user_pass "[ns_config ns/db/pool/$default_pool User]/[ns_config ns/db/pool/$default_pool Password]"

    # Use $ORACLE_HOME in the environment to determine where the sqlplus binary lives.
    if { [catch { return [exec "$env(ORACLE_HOME)/bin/sqlplus" $user_pass "@$path"] } error] } {
	return $error
    }


philg@mit.edu