views:

77

answers:

3

Whenever I perform select statements in the command line tool it doesn't use all of the space.

I've modified buffer size and window size and it just doesn't work.

Here is the screenshot: alt text

+4  A: 

In sqlplus, execute this:

SET LINESIZE 1500 
DVK
wooooooooooooooooooooo ur the best!!!!! thanks alot made my day
DAVID
+1  A: 

Setting your windows console properties alone won't help. You need to tell oracle's sqlplus engine to put output in your perferred manner. This is done by Set options

example:

SET LIN 300

Will use 300 columns per line

ring bearer
thank you also sir
DAVID
+1  A: 

sqlplus does not automatically adjust its output width to fit your terminal window width. You need to change the width with something like set linesize 120

You might want to peruse the SQL*Plus documentation for more information on controlling output format.

David Gelhar
thanks alot for the info
DAVID