sandipbhowmik
sandipbhowmik

Reputation: 91

sqlline not showing all columns of a Ignite table on terminal

I've created a table in Ignite which has more than 20 columns. Now, on sqlline I can only see five columns of that table out of 20 columns when query the data like "select * from table_name". Is there any way to do that in sqlline?

Upvotes: 0

Views: 957

Answers (2)

alamar
alamar

Reputation: 19311

Try the following sqlline command:

!set maxWidth 1000

Upvotes: 1

Evgenii Zhuravlev
Evgenii Zhuravlev

Reputation: 3017

SQL line can't show so many columns horizontally properly, so you can use vertical mode:

!outputformat vertical

Upvotes: 2

Related Questions