CLEAR SCREEN - Oracle SQL Developer shortcut?

2020-02-08 07:07发布

With the aim of reducing mouse activity I was wondering if there was such a command shortcut (eg cls or Ctrl + L) to provide the SQL * Plus (?) "CLEAR SCREEN" command functionality found by clicking the rubber-on-end- of-pencil icon in Oracle SQL Developer to clear the lower "Results" sub-tab (... incorrect terminology I'm sure).

8条回答
家丑人穷心不美
2楼-- · 2020-02-08 07:39

Use cl scr on the Sql* command line tool to clear all the matter on the screen.

查看更多
戒情不戒烟
3楼-- · 2020-02-08 07:41

Ctrl+Shift+D, but you have to put focus on the script output panel first...which you can do via the KB.

Run script.

Alt+PgDn     -  puts you in Script Output panel.
Ctrl+Shift+D -  clears panel.
Alt+PgUp     -  puts you back in editor panel. 
查看更多
Summer. ? 凉城
4楼-- · 2020-02-08 07:43

If you're using sqlplus in a shell, like bash you can run the shell's clear command from sqlplus:

SQL> host clear

you can abbreviate of course:

SQL> ho clear
查看更多
等我变得足够好
5楼-- · 2020-02-08 07:43

SQL>Clear Screen (It is used the Clear The Screen FUlly in SQL Plus Window)

查看更多
爱情/是我丢掉的垃圾
6楼-- · 2020-02-08 07:45

To clear the SQL window you can use:

clear screen;

which can also be shortened to

cl scr;
查看更多
登录 后发表回答