在 Oracle SQL Developer SQL 工作表窗口中打印文本
我正在使用 Oracle SQL(在 SQLDeveloper 中,使用 SQL 工作表)。 我想在选择之前打印一条语句,例如
PRINT 'Querying Table1';
SELECT * from Table1;
我用什么来打印/显示文本输出? 它不是打印,因为这给了我错误:绑定变量 Table1
未声明。 DBMS_OUTPUT.PUT_LINE 是未知命令。 (显然,我是一个没有经验的 SQLDeveloper 和 Oracle 用户。Print 一定有一些同义词,但我在不知道它是什么的情况下很难找到有关它的帮助。)
I am using Oracle SQL (in SQLDeveloper, using the SQL Worksheet). I would like to print a statement before my select, such as
PRINT 'Querying Table1';
SELECT * from Table1;
What do I use to Print / show text output? It's not Print, because that gives me the error: Bind Variable Table1
is NOT DECLARED. DBMS_OUTPUT.PUT_LINE is an unknown command. (Obviously, I'm an inexperienced SQLDeveloper and Oracle user. There must be some synonym for Print, but I'm having trouble finding help on it without knowing what it is.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
进行简单注释:
您应该得到:
如果您想打印变量的结果,这里是另一个示例:
你的输出应该是:
for simple comments:
you should get:
if you want to print out the results of variables, here's another example:
your output should be:
注意:必须使用
作为脚本运行 (F5)
不是
运行语句(Ctl + Enter)
Note: must use
Run as Script (F5)
not
Run Statement (Ctl + Enter)
主要答案省略了新安装的一个步骤,必须打开 dbms 输出窗口。
然后我使用的脚本:
另一个脚本:
The main answer left out a step for new installs where one has to open up the dbms output window.
Then the script I used:
Another script:
您可以将 echo 设置为 on:
在 SQLDeveloper 中,按 F5 以作为脚本运行。
You could set echo to on:
In SQLDeveloper, hit F5 to run as a script.
您可以将文本放在选择语句中,例如...
You could put your text in a select statement such as...
对我来说,我只能让它与
包装和包装一起工作只是抛出错误:SQLPLUS命令失败 - 没有足够的参数
For me, I could only get it to work with
The wraped and WRAPPED just threw errors: SQLPLUS command failed - not enough arguments
如果我省略开始 - 结束,那就是错误。 所以对我来说这是有效的(不需要其他任何东西):
If I ommit begin - end it is error. So for me this is working (nothing else needed):
如果您不希望回显所有 SQL 语句,但只想查看脚本的易于识别的结果,请这样做:
上面示例的输出将如下所示:
If you don't want all of your SQL statements to be echoed, but you only want to see the easily identifiable results of your script, do it this way:
The output from the above example will look something like this: