spool command enhancements

in oracle sql* plus Release 10.2.0.1.0 i was getting perfect results with these spool enhanced commands like (replace/append/create)

but in plsql developer version 7.0.3.1123 (MBCS) in command window i was getting different results

it doesn't throw any error if i am trying to create spool file with existing file name in that perticular path

sql> spool c:/test/testagain.doc;
started spooling to c:\test\testagain.doc

sql> spool off;
stopped spooling to c:\test\testagain.doc

sql> spool c:/test/testagain.doc create;
started spooling to c:\test\testagain.doc create

sql>

i am expecting error here...

is plsql developer version 7.0.3.1123 (MBCS) recognize the spool command enhancements like (replace/append/create)?

if advanced versions support these enhancements please specify the version

thanks in advance.......
 
Back
Top