How to set linesize from Command Window

Alba

Member
Hi,
I use PL/SQL Developer vers. 8.0.0.1480
If I try to launch a script from Command Window I've noticed that if I execute "set linesize 1000" and launch the spooling of my script, afterwords I get a TXT file where the rows selected are truncated, whereas if I do that by using SQL Plus of Oracle this doesn't happen. Is it possibile that PL/SQL Developer doesn't take into account the "set linesize" command? Can you help me?
 
Perhaps you need to do a "set colwidth nnn" to prevent that individual columns are truncated? The Command Window does not really have a line size limitation.
 
Back
Top