如何在Oracle10g for Linux中运行PL/SQL程序

发布于 2024-09-16 19:34:25 字数 159 浏览 4 评论 0原文

BEGIN
  dbms_output.put_line('Welcome to PL/SQL');
END;
/

我在 sample.sql 文件中有此代码。
如何运行sample.sql

BEGIN
  dbms_output.put_line('Welcome to PL/SQL');
END;
/

I have this code in sample.sql file.
How to run sample.sql?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浊酒尽余欢 2024-09-23 19:34:25

您可以使用 SQL*Plus(使用您的用户名/密码和您的实例名称):

sqlplus username/password@instance @ sample.sql

另一种方法是免费下载SQL Developer 来自 Oracle,打开并执行该文件。


请注意,默认情况下不会显示文本,您需要启用输出之前。

将以下行作为第一行放入文件中:

SET SERVEROUTPUT ON

You can run it using SQL*Plus (using your username/password and the name of your instance):

sqlplus username/password@instance @ sample.sql

Another way would be to download free SQL Developer from Oracle, open and execute the file there.


Note that the text will not be displayed per default, you need to enable the output before.

Put the following line into your file as first line:

SET SERVEROUTPUT ON
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文