在目前的windows服务器的oracle下面,建立一个操作系统调度任务,sj_function.bat其中里面内容如下:
sqlplus add114/add114@bstdb @sj_function.sql>sj_function.log;其中sj_function.sql内容如下:
execute pk_xxsj_function.in_trs_tab();
update t_cus_info_event
set bst_flag=2;
commit;
execute pk_sj_function.delete_event();
exit;这个sj_function.bat的调度任我如何移植到linux环境下呢?