You can manually start process agents from the command line.
To manually start a process agent, enter the following command on the command line of the host:
$NCHOME/omnibus/bin/nco_pad -name process_agent
In this command, process_agent is the name of the process agent, as defined in the omni.dat file (UNIX) or sql.ini file (Windows). You can specify additional command-line options with this command.
The process agent daemon (nco_pad) runs relative to the $NCHOME/omnibus location.
The process agent daemon (nco_pad)
follows UNIX-style quoting rules when deciding whether to expand environment
variables inside arguments for external actions. The rules are as
follows, in order of precedence:
In the following
example, only $B is expanded, because $B is
outside of a pair of single quotes:
'$A'$B'$C'
The following example shows how you can avoid expansion but still output quotes. To obtain single quotes in the output, you must escape the string inside double quotes, as follows:
"'"'$A'"'"'$B'"'"'$C'"'"
This string produces the following output:
'$A'$B'$C'
To obtain the output '$A'$B'$C' with no expansion, it is not sufficient to place the string in double quotes because, according to the UNIX quoting rules, the string would be expanded. For no expansion to take place the whole string must be inside single quotes.