批处理实施存储过程

批处理执行存储过程批处理执行存储过程bat文件 sqlplus user/password@data1 @sqlfile.sqlsqlfile.sql 文

批处理执行存储过程
           批处理执行存储过程
bat文件
sqlplus user/password@data1 @sqlfile.sql



sqlfile.sql 文件
call pro_droptable();
  exit;


加入exit是为了sqlplus 退出.