상세 컨텐츠

본문 제목

[ORACLE] sqlplus 출력 화면 설정

PROGRAMMING

by koharin 2021. 4. 5. 16:45

본문

728x90
반응형

SQLPLUS에서 설정


SQL> SET LINESIZE [원하는 크기];
SQL> SET PAGESIZE [원하는 크기];
  • LINESIZE: 줄 당 출력 문자 수 지정
  • PAGESIZE: 한 화면에서 출력되는 라인 수 지정

 

 

화면 사이즈 고정 설정


C:\oraclexe\app\oracle\product\11.2.0\server\sqlplus\admin\glogin.sql 에서 화면 사이즈 바꾸는 다음의 라인을 추가한다.

--
-- Copyright (c) 1988, 2005, Oracle.  All Rights Reserved.
--
-- NAME
--   glogin.sql
--
-- DESCRIPTION
--   SQL*Plus global login "site profile" file
--
--   Add any SQL*Plus commands here that are to be executed when a
--   user starts SQL*Plus, or uses the SQL*Plus CONNECT command.
--
-- USAGE
--   This script is automatically run
--
SET LINESIZE 300
SET PAGESIZE 100

 

728x90
반응형

관련글 더보기