Question How To Show The Temp-table Values To A Text File

Pramod Nair

Member
I want to output the temp-table values after assigning values in it on to the text file eg. xyz.txt.
Please help in this matter.
 
In case XML is fine for you then
Code:
buffer yourTempTable:handle:write-xml ( "file", yourFileName ).
Heavy Regards, RealHeavyDude.
Thanks for the quick reply. But i need output to the text file. I just want to check whether my temp-table has correct values or not.
 
Code:
output to value(filename). 
for each temptable:
  export delimiter "," temptable.
end. 
output close.
 
Back
Top