Excel= directive in a comment section

Duddha

Member²
Very nice feature, thank you :) , but there is one problem:
-- Excel = file name gives me file named "file name.xls", but when I try something like -- Excel = file name %date% I'm getting file "file name 22.07.2013" (without .xls extension) and "Error opening document" message in PL/SQL Developer.
That's because of "." existence in file name. Any file names with points in them will get the same result.
 
I see. If the date format includes dots you will need to add the extension. For example:

-- Excel=filename_%date%.xls

We'll fix this for the next patch release.
 
Back
Top