bat中的命令
================================================
@echo off 
sqlplus ecssroot/dbwork@ora11g @order.sql> log.txt
exit===============================================
order.sql中的代码exec input_order;
commit;
exit;
===============================================
其中input_order这个存储过程有个参数是FILENAME; 
我现在的问题是  如何在命令行也就是bat中把这个参数传进去呢?
请各位大神赐教。