I've got a batch file to do an export which relies on a parfile. But this does not seem to work. It only generates a log file but does not do the export.

Parfile

FULL= Y
GRANTS = Y
INDEXES = Y
CONSTRAINTS=Y
ROWS = Y
COMPRESS = Y
fullexport.txt=FILE=v:\backup\exports\evolvlivtest.dmp
LOG = V:\backup\exports\fullexport.log


Batch file

echo on
cd\
c:

exp system/evolvliv@evolvliv parfile=u:\oracle\exports\fullexport.txt 1>>v:\backup\exports\fullexport.log
rem exp userid=system/password@evolvliv full=y grants=y rows=Y constraints=Y file=u:\oracle\exports\evolvlivtest.dmp

Its seems to work when all the parameters are specified in one file.