CLEAR SCREEN - Oracle SQL Developer shortcut?

坚强是说给别人听的谎言 提交于 2019-11-27 13:04:41

问题


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).


回答1:


To clear the SQL window you can use:

clear screen;

which can also be shortened to

cl scr;



回答2:


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



回答3:


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




回答4:


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




回答5:


CTRL+D? http://www.scribd.com/doc/7580088/SQL-Developer-Hot-Keys

If that doesn't work, you might be able to set up an Accelerator: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b31695/intro.htm#sthref208




回答6:


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. 



回答7:


Use the following command to clear screen in sqlplus.

SQL > clear scr 



回答8:


In the Oracle SQL-plus:

shift+del


来源:https://stackoverflow.com/questions/3109067/clear-screen-oracle-sql-developer-shortcut

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!