Hi!
When exporting -tested format CSV to clipboard- the query result, and one of the column header has a “/”, the header is wrong:
for this query
select EMPNO||'/'||DEPTNO "EmpNo/DepNo"
,ENAME "Name",JOB "Job",MGR "Mgr"
from EMP;
When I paste the clipboard, I get this output
"ENAME "Name"","Name","Job","Mgr"
"7839/10","KING","PRESIDENT",0
"7698/30","BLAKE","MANAGER",7839
Where the correct header would be "EmpNo/DepNo". If I change the offending “/” by space or “:”, the pasted output is correct:
"EmpNo:DepNo","Name","Job","Mgr"
"7839/10","KING","PRESIDENT",0
"7698/30","BLAKE","MANAGER",7839
Regards