You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

We recommend using our SQL*Plus job for working with SQL*Plus and the Oracle DBMS.
This is one of our JITL jobs that are provided with JobScheduler.

Use JOE to create an SQL*Plus job like this:

  • Open the wizard
  • Select SOSSQLPlusJob in the list of available jobs and enter a job name
  • Goto "next" to set some parameters for the database connection etc.
  • Follow the above link to get more information about the parameter etc.

  • After you finished the wizard you can insert the SQL*Plus script in the script tab of the job. 

  • Alternatively you can put the SQL*Plus script in an external file and add this filename to the parameter sql_script_file.

Example:

<?xml version="1.0" encoding="ISO-8859-1"?>
<job  title="Start SQL*Plus client and execute an SQL*Plus script" order="no">
    <description >
        <include  file="jobs/SOSSQLPlusJob.xml"/>
    </description>

    <params >
        <param  name="db_url" value="test"/>
        <param  name="db_user" value="test"/>
        <param  name="db_password" value="test"/>
    </params>

    <script  language="java" java_class="sos.scheduler.db.SOSSQLPlusJobJSAdapterClass">
        <![CDATA[
WHENEVER SQLERROR EXIT SQL.SQLCODE
WHENEVER OSERROR EXIT FAILURE

prompt Hello World;
/
exit;
        ]]>
    </script>

    <run_time />
</job>
  • No labels