0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

SQL*Plusのページの行数を設定する方法

Last updated at Posted at 2020-03-11
  • 環境
    • SQL*Plus: Release 12.2.0.1.0 Production
    • (AWSのRDS)Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production

タイトル行からタイトル行までの間の行数(タイトル行とかハイフン行含む)はページサイズというらしい。

ページサイズを設定する方法

set pagesize {ページサイズ};
-- ページサイズを確認する
show pagesize;

増やしてみた

-- 16行ぐらいで改ページしないでほしい
SQL> select * from cell_info;

CELL         CONTENTS
------------ ------------------------------------
B1           apple
B11          orange
B25          strawberry
B2           persimmon
AA1          cherry
AA11         pomegranate
AA25         kumquat
AA2          loquat
AC1          turnip
AC11         banana
AC25         melon

CELL         CONTENTS
------------ ------------------------------------
AC2          grape
A1           peach
A11          mandarin
A25          plum
A2           pumpkin

16行が選択されました。

-- デフォルトの値を確認する
SQL> show pagesize
pagesize 14
-- ページサイズを増やす
SQL> set pagesize 30
-- 確認する
SQL> show pagesize
pagesize 30
-- もう一度検索してみると見やすくなった
SQL> select * from cell_info;

CELL         CONTENTS
------------ ------------------------------------
B1           apple
B11          orange
B25          strawberry
B2           persimmon
AA1          cherry
AA11         pomegranate
AA25         kumquat
AA2          loquat
AC1          turnip
AC11         banana
AC25         melon
AC2          grape
A1           peach
A11          mandarin
A25          plum
A2           pumpkin

16行が選択されました。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?