Where can I see the output of DBMS_OUTPUT.PUT_LINE () in IBM Data Studio?

I use IBM Data Studio as a development environment,

 CREATE OR REPLACE PROCEDURE TEST()
 is
 BEGIN
  DBMS_OUTPUT.PUT_LINE("Hi there.");
 END;

I can see in the details of execution, such as time, an exception, if any, other information in SQL Results window. Is IBM Studio storing OUTPUT data in some kind of file? If so, I would like to know the location.

How to enable this feature that can provide this.

+4
source share
1 answer

Data Studio ( , , Eclipse stdout). DBMS_OUTPUT . DBMS_OUTPUT, " ", .

, , log4db2 DBMS_OUTPUT .

+1

Source: https://habr.com/ru/post/1606649/


All Articles