Reputation: 581
when i use select * from table the database shows like this. Why is it so ? I have only one entry for each column. It shows repeated times.
Upvotes: 0
Views: 101
Reputation: 625
You can specify the line size and page size if necessary like this:
set linesize 100 pagesize 50
you can change the value of linesize
and pagesize
according to you.
or you can try this, it works for me most of the time
set lines 256
set trimout on
set space 1
set tab off
Upvotes: 2