Hi,
I am trying to generate a txt file that has dynamic SQL Insert statements,The string I am generating in the file is as below
INSERT INTO ABC (A,B,C,D,E,F,G) VALUES ( 'ONBD','C1-BL ','C1 ','CIP','CBL ',' ','1 ' );
With the below setting for Output I get the line enclosed in Double quotes

When I set the 'Quote Output Fields' to 'Never' and had a delimiter semicolon (; )it will error out
Error:When Quote Mode is Never, field cannot contain a delimiter character
How do I generate the txt file with no Quotes and end the line with a semicolon?
Thanks