PUT_LINE procedure
Translation reference for DBMS_OUTPUT.PUT_LINE.
Description
This procedure places a line in the buffer. (Oracle PL/SQL DBMSOUTPUT.PUT_LINE)
This UDF is implemented using a temporary table to insert the data to be displayed to replicate the functionality of Oracle DBMS_OUTPUT.PUT_LINE
function.
Syntax
Custom procedure
Setup data
The DBMS_OUTPUT
schema must be created.
DBMS_OUTPUT.PUT_LINE(VARCHAR)
Parameters
LOG: Item in a buffer that you want to display.
If you do not use the temporary table, keep in mind that you may need another column in the table where the USER running DBMS_OUTPUT.PUT_LINE UDF is inserted to avoid confusion.
Usage example
Oracle
Snowflake
Known Issues
The UDF code will remain commented out because it can affect performance, if the user decides to use it, they just need to uncomment the code.
The user can modify the UDF so that the necessary information is inserted into the DBMS_OUTPUT.PUT_LINE table.
Related EWIs
SSC-FDM-OR0035: Check UDF implementation for DBMS_OUTPUT.PUT_LINE_UDF.
Last updated