dbms_output.put_line

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

Does dbms_output.put_line decrease the performance in plsql code?

5条回答
  •  生来不讨喜
    2020-11-28 15:46

    Every extra line of code decreases the performance of code. After all, it is an extra instruction to be executed, which at least consumes some CPU. So yes, dbms_output.put_line decreases the performance.

    The real question is: does the benefit of this extra line of code outweigh the performance penalty? Only you can answer that question.

    Regards,
    Rob.

提交回复
热议问题