oracle sqlplus Configuration

  1. slqplus disorder display settings (instruction format)
SET LINESIZE 300;
SET PAGESIZE 30;
  1. Open the file sql editor, execute sql file
ed 文件名
@文件名
  1. Command switching user database
CONN system/manager

Super Administrator Login:

CONN sys/change_oninstall AS SYSDBA
  1. To "model name Table name" way to access the table
SELECT * FROM scott.emp;
  1. Calls the native system commands
HOST ***
Published 42 original articles · won praise 2 · Views 1382

Guess you like

Origin blog.csdn.net/Listen_heart/article/details/104417632