PatPanda
PatPanda

Reputation: 5010

Cassandra - CQLSH - select * from table; Without the ---MORE---

Small question regarding Cassandra and cqlsh please.

I have a table, not too big, 300+ rows.

Hence, I want to select all in one go, to see the data, 300 is nothing crazy.

Therefore, I run the basic select * from mytable;

Each time, it gives only 100 rows. Then, I see a "more"

---MORE---

How to skip this ---MORE--- and to return everything in one go please?

Thank you

Upvotes: 0

Views: 900

Answers (1)

Alex Ott
Alex Ott

Reputation: 87069

This is controlled by the PAGING command in cqlsh (docs). To disable it, enter PAGING OFF;

Upvotes: 3

Related Questions