Exporting a dataset from a grid with values that contain tabs results in the insert statement value containing two spaces where the tab should be. e.g.
select 'Quest'||chr(9)||'Support' name from dual
Exporting dataset using INSERT statement results in spaces replacing the tab:
Insert into DUAL
(NAME)
Values
('Quest Support');
The expected result is that the tab character is retained in the data.
You need to be signed in and under a current maintenance contract to view premium knowledge articles.
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center