Hello, I am trying to export a table but automatically exporting it as a field terminator ',' and what I would like to follow is that the field separator is ';'. For this I am using a stored procedure.
What I get is:
Part_Number, Tool_Number, ...
1,1, ...
And what I want to achieve is:
Part_Number; Tool_Number; ...
1; 1; ...
Thank you very much. A Greeting Carlos.