HANA SQLScript dbms_output.put_line() equivalent?

4.8k Views Asked by At

Does HANA SQLScript have an equivalent function to dbms_output.put_line()? Looking for something that can be used to print an output like I do with PL/SQL or Python.

2

There are 2 best solutions below

2
On

Nope, there is nothing similar to that. As the documentation shows in some of the example codings, you may enter trace text into a logging table.

  • Lars
0
On

hana has built-in library SQLSCRIPT_PRINT. For details see SAP_HELP

a sample code:

DO BEGIN
  USING SQLSCRIPT_PRINT as LIB;
  BEGIN
    LIB:PRINT_LINE('Hello World!');
  END;
END;