如何在Oracle10g for Linux中运行PL/SQL程序
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SQL*Plus(使用您的
用户名
/密码
和您的实例名称):另一种方法是免费下载SQL Developer 来自 Oracle,打开并执行该文件。
请注意,默认情况下不会显示文本,您需要启用输出之前。
将以下行作为第一行放入文件中:
You can run it using SQL*Plus (using your
username
/password
and the name of your instance):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: