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