Skip to content

Commit

Permalink
pg.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
jkstill committed Jul 18, 2024
1 parent 1fd3501 commit a700edc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions INDEX
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/opcodes.sql'>opcodes.sql</a> - list of SQL opcodes for use in 10g-. See cpu-busy.sql
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/oversion_minor.sql'>oversion_minor.sql</a> - get the XX.xx version of oracle and store in &v_oversion_minor
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/oversion_major.sql'>oversion_major.sql</a> - get the XX version of oracle and store in &v_oversion_major
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/pg.sql'>pg.sql</a> - set PAGESIZE and LINESIZE. '@pg 100 200'
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/ttitle.sql'>ttitle.sql</a> - set title and width
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/title.sql'>title.sql</a> - set title and width
<a href='https://github.com/jkstill/oracle-script-lib/blob/master/sql/title80.sql'>title80.sql</a> - set title and width to 80
Expand Down
8 changes: 8 additions & 0 deletions sql/pg.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

-- pg.sql
-- setup pagesize and linesize

set pagesize &1
set linesize &2 trimspool on


0 comments on commit a700edc

Please sign in to comment.