I am generating CSV file with PIPE(|) delimiter and output looks good. However, my header record always display in Uppercase even though I defined as mixed case in the data model query. my requirement is whatever format I gave and should come same format in my CSV file.
select
FIRST_NAME 'FirstName',
LAST_NAME 'LastName'
from dual.
I am getting the following data in CSV file.
FIRSTNAME|LASTNAME
John|Doe
Lisa|flint
Joe|deflice
I want header record should be display in the mixed case format in the file.
FirstName|LastName
Really appreciate help.
Thanks