
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to create Pipe Seperate text file
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
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
use this...
Store TABRES into D:\testfilefolder\txtfile.txt (txt, delimiter is '|')


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Try this one:
STORE Table into t.csv(delimiter is '|');
hth
sushil


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
use this...
Store TABRES into D:\testfilefolder\txtfile.txt (txt, delimiter is '|')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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);

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Phaneendra/Friends,
Thanks to all for quick response
Thanks & Regards
SD
