oracle sqlplus常用命令

以为内容选自Oracle官方文档:

----------------------------------------------------------------------------------------------------

1、glogin.sql常用脚本(配置sqlplus command line)

-- To change the SQL*Plus prompt to display the current user,
-- connection identifier and current time.
-- First set the database date format to show the time.
ALTER SESSION SET nls_date_format = ‘YYYY-MM-DD HH:MI:SS‘;
-- SET the SQLPROMPT to include the _USER, _CONNECT_IDENTIFIER
-- and _DATE variables.
SET SQLPROMPT "_USER‘@‘_CONNECT_IDENTIFIER> "
-- To set the number of lines to display in a report page to 24.
SET PAGESIZE 24
-- To set the number of characters to display on each report line to 78.
SET LINESIZE 78
-- To set the number format used in a report to $99,999.
SET NUMFORMAT $99,999

2、常用命令:

--help index                                      调出sqlplus帮助索引界面

{

   

}

--host <cls | del...>                          sql会话模式利用host命令调用cmd命令

--show <variable>                           显示变量货参数值

--describle/desc <tablename>    描述表结构内容

--SET 命令集:

   --SET PAGESIZE 60                    设置一页显示行数

   --

--store and start <variable>         

 e.g.

 { 

SCOTT@orcl> store set c:\plusenv.sql  --存储当前session set 变量值
已创建 file c:\plusenv.sql
SCOTT@orcl> show pagesize
pagesize 24
SCOTT@orcl> set pagesize 60
SCOTT@orcl> show pagesize
pagesize 60
SCOTT@orcl> start c:\plusenv.sql     --恢复set 变量值
SCOTT@orcl> show pagesize
pagesize 24
SCOTT@orcl> host del /f c:\plusenv.sql

 }

--

















To be continue...

---------------------------

Dylan Presents.

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。