Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Managed Jobs PHP web interface provides a textarea for this, while in the Job Scheduler Object Editor (JOE), only an input field is available.
PHP converts the textarea hexadecimal because a newline cannot be written in an XML attribute (see also Why_have_the_command_parameter_of_some_jobs_a_hexadecimal_coded_value%3F).
If you want to use the job with multiple statements without the Managed Jobs, then the statements should be changed hexadecimal or you use 
 as newline.

The following is an example of a job chain in which the command contains two statements separated by .

...

Code Block
 <[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/order.xml order] title="update MY_TABLE">
     <params>
         <param name="command"        value="update MY_TABLE set a='foo' where b='bar';&amp;#10;commit;"/>
     </params>
     <run_time/>
 </order>

...