cancel
Showing results for 
Search instead for 
Did you mean: 
varelov
Flight Engineer Flight Engineer
Flight Engineer
  • 2,249 Views

Pagers on MariaDB command line- are there any?

Jump to solution

Is there a way to page the output of an SQL command within MariaDB shell the way Bash offers paging via less?

Let's say you are at the MariaDB prompt and are inspecting the mysql database for all the columns it has:

<MariaDB[mysql]> show tables;

Output usually runs through and I'd like to put it through a pager like it is done in bash:

[root@lolzie]# some_command | less
Labels (2)
1 Solution

Accepted Solutions
NunoMartins
Flight Engineer Flight Engineer
Flight Engineer
  • 2,241 Views

You can do the following: 

mysql> pager less

or you can use the pager to send the output to a file or to a script 

mysql> pager /tmp/process_script

 

View solution in original post

1 Reply
NunoMartins
Flight Engineer Flight Engineer
Flight Engineer
  • 2,242 Views

You can do the following: 

mysql> pager less

or you can use the pager to send the output to a file or to a script 

mysql> pager /tmp/process_script

 

Join the discussion
You must log in to join this conversation.