dbms_output.put_line

前端 未结 5 1277
旧时难觅i
旧时难觅i 2020-11-28 15:23

Does dbms_output.put_line decrease the performance in plsql code?

5条回答
  •  甜味超标
    2020-11-28 15:54

    Yes, it's another piece of code that needs to be executed, but unless the output is actually turned on, I think the overhead is quite minimal.

    Here's an AskTom question with more details: Is there a performance impact for dbms_output.put_line statements left in packages?

提交回复
热议问题