Details
-
Technical task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Duplicate
-
None
Description
Implement a built-in package DBMS_OUTPUT for sql_mode=ORACLE.
This feature is actively used by Oracle users, especially for debugging purposes.
The idea:
- A stored routine can send debug messages using DBMS_OUTPUT methods, such as DBMS_OUTPUT.PUT_LINE(), which are collected in the package internal buffers.
- The client program e.g. SQL*Plus retrieves the collected messages using methods such as DBMS_OUTPUT.GET_LINE()
SQL*Plus understands a special command SET SERVEROUTPUT ON; to enable displaying of the DBMS_OUTPUT messages after each statement executed.
Example:
DROP FUNCTION f1; |
CREATE FUNCTION f1 (a INT) RETURN INT |
AS
|
BEGIN
|
DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); |
RETURN a; |
END; |
/
|
SET SERVEROUTPUT ON; |
SELECT f1(10) FROM DUAL; |
F1(10)
|
----------
|
10
|
|
a IS 10
|
Possible implementation using NOTEs
When we have MDEV-10591 implemented, we will be able just to create a package DBMS_OUTOUT with a procedure PUT_LINE('string') which will just send 'string' to the client as a NOTE. That would not be exactly the same how Oracle works, but very close, and useful for debugging purposes.
Attachments
Issue Links
- duplicates
-
MDEV-19149 System package SYS.DBMS_OUTPUT
-
- Open
-
- is blocked by
-
MDEV-10591 Oracle-style packages
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Description |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which is collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected information using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} |
Link |
This issue is blocked by |
Link | This issue is part of MDEV-10137 [ MDEV-10137 ] |
Link | This issue is part of MDEV-10137 [ MDEV-10137 ] |
Parent |
|
|
Issue Type | Task [ 3 ] | Technical task [ 7 ] |
Description |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} When we have |
Description |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} When we have |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} When we have |
Description |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} When we have |
Implement a built-in package {{DBMS_OUTPUT}} for {{sql_mode=ORACLE}}.
This feature is actively used by Oracle users, especially for debugging purposes. The idea: - A stored routine can send debug messages using {{DBMS_OUTPUT}} methods, such as {{DBMS_OUTPUT.PUT_LINE()}}, which are collected in the package internal buffers. - The client program e.g. {{SQL*Plus}} retrieves the collected messages using methods such as {{DBMS_OUTPUT.GET_LINE()}} {{SQL*Plus}} understands a special command {{SET SERVEROUTPUT ON;}} to enable displaying of the {{DBMS_OUTPUT}} messages after each statement executed. Example: {code:sql} DROP FUNCTION f1; CREATE FUNCTION f1 (a INT) RETURN INT AS BEGIN DBMS_OUTPUT.PUT_LINE('a IS '||TO_CHAR(a)); RETURN a; END; / SET SERVEROUTPUT ON; SELECT f1(10) FROM DUAL; {code} {noformat} F1(10) ---------- 10 a IS 10 {noformat} h2. Possible implementation using NOTEs When we have |
Labels | Compatibility |
Labels | Compatibility |
Labels | Compatibility |
Labels | Compatibility |
Labels | Compatibility |
Labels | Compatibility | Compatibility NRE-307517 |
NRE Projects | NRE-307517 |
Labels | Compatibility NRE-307517 | Compatibility |
Fix Version/s | 10.3 [ 22126 ] | |
Fix Version/s | 10.2 [ 14601 ] |
Comment | [ Should it have 10.2 as a fix version? ] |
Parent |
|
MDEV-10764 [ 57940 ] |
Fix Version/s | 10.3 [ 22126 ] |
Support case ID | not-26307 |
NRE Projects | AC-2610/DEFERRED |
Workflow | MariaDB v3 [ 76696 ] | MariaDB v4 [ 140041 ] |
Assignee | Alexander Barkov [ bar ] |
Fix Version/s | 12.2 [ 30146 ] |
Fix Version/s | N/A [ 14700 ] | |
Fix Version/s | 12.2 [ 30146 ] | |
Resolution | Duplicate [ 3 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Link | This issue duplicates MDEV-19149 [ MDEV-19149 ] |