Reputation:
If I run SQL in TOAD 11.0.0.116, and run it as a Script, it displays the output in the "Script Output" tab as raw text.
However, the display wraps after about 62 characters as you can see here:
I have messed about with setting the pagesize variable, to 0, and 200 and 2000 etc. but nothing makes any difference. Does anyone know if it is possible to prevent the text wrapping like this?
Thanks
Upvotes: 0
Views: 1593
Reputation: 23371
Try using the set linesize
command. I have here the Toad version 9.5 and it works:
set linesize 500;
instead of set pagesize
Upvotes: 1