Oracle常用命令

Oracle常用命令

oracle登录命令

普通用户登录:sqlplus scott/tiger

系统管理员用户登录:"sys/chowmin as sysdba"

查询oracle支持那些命令:help index

set命令

set sqlbanklines on 设置可换行输入SQL

/ 命令执行缓存区的数据信息

保存缓存区的数据信息

save h:\demo.txt

执行文件里的语句

@h:\demo.txt

获取文件里脚本内容

get h:\demo.txt

编辑命令

edit h:\demo.txt

格式化输出

col deptno format a10

设置标题

col dname heading "部门名称"

SQL> select *   from dept where deptno=&param;

输入   param 的值:  10

SQL> select *   from dept where deptno=&param;

输入   param 的值:  20

以替代方式oracle安排一个执行计划

select * from   dept where deptno=10

select * from   dept where deptno=20

以直接写的方式执行几次安排几个执行计划

 

posted @ 2012-08-21 18:43  心随梦飞[fosilzhou]  阅读(193)  评论(0编辑  收藏  举报