Command window实现了SQL*Plus的所有功能,允许运行sql*plus命令,sql命令,sql脚本。
SQL window用于执行sql语句,显示sql输出,执行统计信息。(测试sql语句,查看表中的数据,更新数据)
例如 desc table不能在SQL window中执行,必须在Command window中才能执行。
在Program window中创建一个存储过程,如下:
create or replace procedure TEST is
begin
DBMS_SESSION.set_nls('NLS_DATE_FORMAT','''YYYY-MM-DD HH24:MI:SS''');
DBMS_OUTPUT.PUT_LINE('HelloWorld!');
DBMS_OUTPUT.put_line(SYSDATE);
end TEST;
需要注意,SET_NLS的第二个参数VALUE
输入的值除了需要的格式外,还需要包含引号,否则会引发错误(选项缺失或无效)
在Command window中执行(或者在Test window中测试),如下:
set serveroutput on
exec TEST();
或者begin
2 test();
3 end;
4 / ......
The Command Window can be used to develop and execute SQL scripts, using the familiar SQL*PLus command syntax. The built-in editor is a comfortable environment to develop your scripts, using SQL*Plus, SQL and PL/SQL syntax highlighting. It has the same powerful features as the PL/SQL Editor, such as the Code Assistant, the Object Popup Menu, and so on. You can quickly switch between the script editor and the command line by clicking on the tabs at the top of the window.
Just like with SQL*Plus you can interactively type single commands and SQL statements on the command line. Error messages are displayed in red, and the error location is underlined in red as well. This makes it easy to find and identify errors.
分享到:
相关推荐
PL/SQL Developer 提供了多种编辑环境,如 SQL Window、Command Window 和 Program Window。每个窗口都有不同的用途,比如: - **SQL Window** 主要用于执行 SQL 查询语句。 - **Command Window** 可以运行各种命令...
1. **运行SQL语句**:在PL/SQL Developer中,你可以通过选中SQL语句后按F8键来执行它们,这是一个快速执行SQL的快捷方式。 2. **查看创建表的SQL**:按住Ctrl键,然后用鼠标点击想要查看的表名,可以直接看到该表的...
### PL/SQL Developer 8 用户指南重要知识点概览 ...以上就是《PL/SQL Developer 8 用户指南》中涉及的主要知识点概览,希望能为读者提供有价值的信息,帮助他们在Oracle数据库开发中更加高效和专业。
在Oracle PL/SQL开发环境中,优化工具设置可以显著提升开发效率和用户体验。以下是一些关键的设置技巧: 1. **默认选中"My Objects"**:默认情况下,PLSQL Developer的Browser会选择"All objects",这对于拥有大量...
64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 Enhancements Performance and stability improvements...
例如,`Command Window`可以用来执行SQL命令和PL/SQL块,`Program Window`用于创建和修改各种子程序,如过程、函数、包和触发器,而`Test Window`则允许测试和追踪PL/SQL子程序的运行结果,便于调试和优化。...
Command Window CONNECT command would show the connection info twice in Single Connection Mode Code Assistant could show select loop variable field list beyond the scope of the loop Test Window bind ...
- “Command Window”允许用户直接输入 SQL 语句或其他命令。 - 支持即时执行和反馈结果。 ##### 7.2 开发命令文件 - 可以创建和保存包含多个命令的文件。 - 便于批量执行复杂的操作。 ##### 7.3 支持命令 - 工具...
64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 安装请查看说明。 PL/SQL Developer 13.0 - New ...
Window icons now indicate the PL/SQL Developer window type. Connection status icon moved to the left for consistency. Session Window enhancements You can now define Session Actions that can be ...
64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle 客户端。 安装请查看说明。 JUNE 4, 2020 - VERSION 14.0.1 RELEASED Enhancements Language packs updated for 14.0 features ...
PL/SQL Developer允许用户自定义快捷键,如为常用操作分配ALT+S和ALT+C给SQL Window和Command Window,以提高工作效率。 7. **其他实用功能**: - 快速清空表:在对象上右键选择`Truncate Table`。 - 分析与验证...
64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 备注:新版本Ribbon启用了 Ribbon 界面,改动较大,不...
PL/SQL Developer 提供了多种窗口来辅助开发工作,包括 SQL Window、Command Window 和 Program Window 等。这些窗口各有其特色和用途: - **SQL Window**:用于编写和执行 SQL 语句。 - **Command Window**:可以...
The align button has a new Window width option to resize the SQL Window width to match the result set width You can now use an AltRowColor=[RRGGBB | name] directive in a comment section of the SQL ...
3. **类SQL PLUS窗口**:通过File -> New -> Command Window,可以打开一个类似SQL PLUS的命令窗口,提供更便捷的SQL执行环境。 4. **关键字自动大写**:在Tools -> Preferences -> Editor中,选择"Keyword case"为...
在使用PL/SQL Developer的SQL Window时,默认情况下按下F8键会执行整个窗口中的所有SQL语句。但很多时候我们只需要执行当前光标所在位置的单条语句。 **设置方法**: 1. 进入 `Tools` -> `Preferences` -> `Window ...
Connecting the PL/SQL Developer main connection from the Command Window would show "Not logged on" as feedback File Dialog and Find Dialog could incorrectly show up after unlocking Windows An error ...
Connecting the PL/SQL Developer main connection from the Command Window would show "Not logged on" as feedback File Dialog and Find Dialog could incorrectly show up after unlocking Windows An error ...
1. 在PL/SQL Developer中打开一个新的“Command Window”。 2. 找到之前导出的表结构文件(例如“b.sql”),将其内容复制到“Command Window”中。 3. 执行这些SQL命令,如果表已存在于目标数据库中,可能会出现...