Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have made one table by using script. But, i want to load whole data of the table into .txt file with comma delimeted by using script. Could you please anyone help me
Thanks for your help
Hi Pavan,
STORE {table} INTO {Filepath\filename} (txt);
You can change the delimiter also ...
STORE {table} INTO {Filepath\filename} (txt, delimiter is '|');
If you don't specify a filepath the file is created in same folder as the qvw.
flipside
Thanks for your help