diff --git a/INDEX b/INDEX index 47131b0..029224b 100644 --- a/INDEX +++ b/INDEX @@ -54,6 +54,7 @@ SUPPORTING SCRIPTS: @opcodes.sql: list of SQL opcodes for use in 10g-. See cpu-busy.sql @oversion_minor.sql: get the XX.xx version of oracle and store in &v_oversion_minor @oversion_major.sql: get the XX version of oracle and store in &v_oversion_major +@pg.sql: set PAGESIZE and LINESIZE. '@pg 100 200' @ttitle.sql: set title and width @title.sql: set title and width @title80.sql: set title and width to 80 diff --git a/README.md b/README.md index e6752da..cc7ddae 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ opcodes.sql - list of SQL opcodes for use in 10g-. See cpu-busy.sql oversion_minor.sql - get the XX.xx version of oracle and store in &v_oversion_minor oversion_major.sql - get the XX version of oracle and store in &v_oversion_major +pg.sql - set PAGESIZE and LINESIZE. '@pg 100 200' ttitle.sql - set title and width title.sql - set title and width title80.sql - set title and width to 80 diff --git a/sql/pg.sql b/sql/pg.sql new file mode 100644 index 0000000..102c565 --- /dev/null +++ b/sql/pg.sql @@ -0,0 +1,8 @@ + +-- pg.sql +-- setup pagesize and linesize + +set pagesize &1 +set linesize &2 trimspool on + +