`
liubin2010
  • 浏览: 306883 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

pl/sql中command window 与sql window有什么区别

阅读更多
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 使用技巧小结

    PL/SQL Developer 提供了多种编辑环境,如 SQL Window、Command Window 和 Program Window。每个窗口都有不同的用途,比如: - **SQL Window** 主要用于执行 SQL 查询语句。 - **Command Window** 可以运行各种命令...

    plsql使用技巧

    1. **运行SQL语句**:在PL/SQL Developer中,你可以通过选中SQL语句后按F8键来执行它们,这是一个快速执行SQL的快捷方式。 2. **查看创建表的SQL**:按住Ctrl键,然后用鼠标点击想要查看的表名,可以直接看到该表的...

    PL/SQL Developer8用户指南

    ### PL/SQL Developer 8 用户指南重要知识点概览 ...以上就是《PL/SQL Developer 8 用户指南》中涉及的主要知识点概览,希望能为读者提供有价值的信息,帮助他们在Oracle数据库开发中更加高效和专业。

    PL/Sql设置技巧

    在Oracle PL/SQL开发环境中,优化工具设置可以显著提升开发效率和用户体验。以下是一些关键的设置技巧: 1. **默认选中"My Objects"**:默认情况下,PLSQL Developer的Browser会选择"All objects",这对于拥有大量...

    PLSQL.Developer(X64) v11.0.5.1790 主程序+ v11中文包+keygen - 副本

    64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 Enhancements Performance and stability improvements...

    plsql的学习笔记

    例如,`Command Window`可以用来执行SQL命令和PL/SQL块,`Program Window`用于创建和修改各种子程序,如过程、函数、包和触发器,而`Test Window`则允许测试和追踪PL/SQL子程序的运行结果,便于调试和优化。...

    plsqldev13.0.5.1908x32主程序+ v12中文包+keygen.rar

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

    PL_SQL Dev7.0教程

    - “Command Window”允许用户直接输入 SQL 语句或其他命令。 - 支持即时执行和反馈结果。 ##### 7.2 开发命令文件 - 可以创建和保存包含多个命令的文件。 - 便于批量执行复杂的操作。 ##### 7.3 支持命令 - 工具...

    plsqldev13.0.1.1893x64主程序+ v12中文包+keygen

    64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 安装请查看说明。 PL/SQL Developer 13.0 - New ...

    plsqldev14.0.0.1961x32多语言版+sn.rar

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

    plsqldev14.0.1.1965x64多语言版+sn.rar

    64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle 客户端。 安装请查看说明。 JUNE 4, 2020 - VERSION 14.0.1 RELEASED Enhancements Language packs updated for 14.0 features ...

    PL/SQL DEVELOPER 使用的一些技巧

    PL/SQL Developer允许用户自定义快捷键,如为常用操作分配ALT+S和ALT+C给SQL Window和Command Window,以提高工作效率。 7. **其他实用功能**: - 快速清空表:在对象上右键选择`Truncate Table`。 - 分析与验证...

    plsqldev12.0.7.1837x64主程序+ v12中文包+keygen

    64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle11g 或 Oracle12c 客户端。 安装中文包时请注意安装路径是否为PLSQL程序的路径。 备注:新版本Ribbon启用了 Ribbon 界面,改动较大,不...

    PLSQL_Developer使用技巧

    PL/SQL Developer 提供了多种窗口来辅助开发工作,包括 SQL Window、Command Window 和 Program Window 等。这些窗口各有其特色和用途: - **SQL Window**:用于编写和执行 SQL 语句。 - **Command Window**:可以...

    PLSQL.Developer v11.0.0.1762 主程序+ v10中文包+keygen

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

    plsql实用技巧

    3. **类SQL PLUS窗口**:通过File -> New -> Command Window,可以打开一个类似SQL PLUS的命令窗口,提供更便捷的SQL执行环境。 4. **关键字自动大写**:在Tools -> Preferences -> Editor中,选择"Keyword case"为...

    PLSQL_Developer使用方法技巧

    在使用PL/SQL Developer的SQL Window时,默认情况下按下F8键会执行整个窗口中的所有SQL语句。但很多时候我们只需要执行当前光标所在位置的单条语句。 **设置方法**: 1. 进入 `Tools` -> `Preferences` -> `Window ...

    plsqldev13.0.3.1902x32主程序+ v12中文包+keygen

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

    plsqldev13.0.3.1902x64主程序+ v12中文包+keygen

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

    使用PLSQL_Developer导出Oracle表及数据

    1. 在PL/SQL Developer中打开一个新的“Command Window”。 2. 找到之前导出的表结构文件(例如“b.sql”),将其内容复制到“Command Window”中。 3. 执行这些SQL命令,如果表已存在于目标数据库中,可能会出现...

Global site tag (gtag.js) - Google Analytics