Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Forum/Friends,
As we are aware that we can create comm(,) seperate text file by writting the following script in Script Editor:-
Store TABRES into D:\testfilefolder\txtfile.txt(txt);
Note:- Assum that "TABRES" is resident table having 3 columns.
But, I want to create pipe(|) seperate text file. Can anybody show me how to achieve the above requirment?.
Advance Thanks
SD
use this...
Store TABRES into D:\testfilefolder\txtfile.txt (txt, delimiter is '|')
Hi,
Try this one:
STORE Table into t.csv(delimiter is '|');
hth
sushil
use this...
Store TABRES into D:\testfilefolder\txtfile.txt (txt, delimiter is '|')
Hi Shan,
Use the following syntax to create Pipe Seperated Text File:-
STORE Population_State_Wise into D:\QlikView\JS API\abc.txt
(delimiter is '|', txt);
Hi Phaneendra/Friends,
Thanks to all for quick response
Thanks & Regards
SD