Type:
New Feature
Priority:
Minor
Resolution:
Unresolved
Component/s:
None
Add support for autonomous blocks in stored routines.
This would allow a stored routine marked with autonomous_transaction to commit
and rollback it's own work, independent of the work of the caller.
Oracle defines this as "PRAGMA AUTONOMOUS_TRANSACTION":
https://docs.oracle.com/cd/B19306_01/appdev.102/b14261/autonotransaction_pragma.htm
This pragma can be applied to:
Top-level (not nested) anonymous PL/SQL blocks
Local, standalone, and packaged functions and procedures
Methods of a SQL object type
Database triggers
For the moment a workaround is to use the Aria storage engine for tables that should be persistent against ROLLBACK. Aria tables are never rollbacked
(except if the server crashes in the middle of a query).
The suggested implementation is to run the autonomous routine with it's own THD (== user), like it would be a new independent connection.
An example of an Oracle stored function using AUTONOMOUS_TRANSACTION:
DROP TABLE employees;
DROP FUNCTION raise_salary;
CREATE TABLE employees (
employee_id INT NOT NULL PRIMARY KEY ,
salary INT NOT NULL
);
INSERT INTO employees VALUES (1, 100);
CREATE FUNCTION raise_salary
(emp_id NUMBER,
sal_raise NUMBER) RETURN NUMBER
IS
PRAGMA AUTONOMOUS_TRANSACTION;
new_sal NUMBER(8,2);
BEGIN
UPDATE employees
SET salary= salary + sal_raise
WHERE employee_id = emp_id;
COMMIT ;
SELECT salary INTO new_sal FROM employees WHERE employee_id = emp_id;
RETURN new_sal;
END raise_salary;
/
SELECT raise_salary(1, 10) FROM DUAL;
RAISE_SALARY(1,10)
------------------
110
No workflow transitions have been executed yet.
{"report":{"fcp":1099.8000001907349,"ttfb":448.1000003814697,"pageVisibility":"visible","entityId":56901,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"703c887f-044f-4114-9484-02d8341b0228","navigationType":0,"readyForUser":1186.7000007629395,"redirectCount":0,"resourceLoadedEnd":1340.8000001907349,"resourceLoadedStart":460.1000003814697,"resourceTiming":[{"duration":98.39999961853027,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":460.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":460.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":558.5,"responseStart":0,"secureConnectionStart":0},{"duration":98.39999961853027,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":460.4000005722046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":460.4000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":558.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":153.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":460.5,"connectEnd":460.5,"connectStart":460.5,"domainLookupEnd":460.5,"domainLookupStart":460.5,"fetchStart":460.5,"redirectEnd":0,"redirectStart":0,"requestStart":460.5,"responseEnd":614.3000001907349,"responseStart":614.3000001907349,"secureConnectionStart":460.5},{"duration":219.89999961853027,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":460.70000076293945,"connectEnd":460.70000076293945,"connectStart":460.70000076293945,"domainLookupEnd":460.70000076293945,"domainLookupStart":460.70000076293945,"fetchStart":460.70000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":460.70000076293945,"responseEnd":680.6000003814697,"responseStart":680.6000003814697,"secureConnectionStart":460.70000076293945},{"duration":223.10000038146973,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":461.1000003814697,"connectEnd":461.1000003814697,"connectStart":461.1000003814697,"domainLookupEnd":461.1000003814697,"domainLookupStart":461.1000003814697,"fetchStart":461.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":461.1000003814697,"responseEnd":684.2000007629395,"responseStart":684.2000007629395,"secureConnectionStart":461.1000003814697},{"duration":223.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":461.20000076293945,"connectEnd":461.20000076293945,"connectStart":461.20000076293945,"domainLookupEnd":461.20000076293945,"domainLookupStart":461.20000076293945,"fetchStart":461.20000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":461.20000076293945,"responseEnd":684.7000007629395,"responseStart":684.7000007629395,"secureConnectionStart":461.20000076293945},{"duration":223.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":461.4000005722046,"connectEnd":461.4000005722046,"connectStart":461.4000005722046,"domainLookupEnd":461.4000005722046,"domainLookupStart":461.4000005722046,"fetchStart":461.4000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":461.4000005722046,"responseEnd":685.2000007629395,"responseStart":685.2000007629395,"secureConnectionStart":461.4000005722046},{"duration":298.6000003814697,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":461.6000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":461.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":760.2000007629395,"responseStart":0,"secureConnectionStart":0},{"duration":223.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":461.80000019073486,"connectEnd":461.80000019073486,"connectStart":461.80000019073486,"domainLookupEnd":461.80000019073486,"domainLookupStart":461.80000019073486,"fetchStart":461.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":461.80000019073486,"responseEnd":685.6000003814697,"responseStart":685.6000003814697,"secureConnectionStart":461.80000019073486},{"duration":298.30000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":462,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":462,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":760.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":224,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":462.1000003814697,"connectEnd":462.1000003814697,"connectStart":462.1000003814697,"domainLookupEnd":462.1000003814697,"domainLookupStart":462.1000003814697,"fetchStart":462.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":462.1000003814697,"responseEnd":686.1000003814697,"responseStart":686.1000003814697,"secureConnectionStart":462.1000003814697},{"duration":393,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":463.20000076293945,"connectEnd":463.20000076293945,"connectStart":463.20000076293945,"domainLookupEnd":463.20000076293945,"domainLookupStart":463.20000076293945,"fetchStart":463.20000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":463.20000076293945,"responseEnd":856.2000007629395,"responseStart":856.2000007629395,"secureConnectionStart":463.20000076293945},{"duration":874.1000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":463.30000019073486,"connectEnd":463.30000019073486,"connectStart":463.30000019073486,"domainLookupEnd":463.30000019073486,"domainLookupStart":463.30000019073486,"fetchStart":463.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":463.30000019073486,"responseEnd":1337.4000005722046,"responseStart":1337.4000005722046,"secureConnectionStart":463.30000019073486},{"duration":105.89999961853027,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":771.7000007629395,"connectEnd":771.7000007629395,"connectStart":771.7000007629395,"domainLookupEnd":771.7000007629395,"domainLookupStart":771.7000007629395,"fetchStart":771.7000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":771.7000007629395,"responseEnd":877.6000003814697,"responseStart":877.6000003814697,"secureConnectionStart":771.7000007629395},{"duration":307.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1033.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1033.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1340.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":365.1000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1034,"connectEnd":1034,"connectStart":1034,"domainLookupEnd":1034,"domainLookupStart":1034,"fetchStart":1034,"redirectEnd":0,"redirectStart":0,"requestStart":1034,"responseEnd":1399.1000003814697,"responseStart":1399.1000003814697,"secureConnectionStart":1034}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":255,"responseStart":448,"responseEnd":455,"domLoading":458,"domInteractive":1363,"domContentLoadedEventStart":1363,"domContentLoadedEventEnd":1406,"domComplete":2067,"loadEventStart":2067,"loadEventEnd":2068,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1347.6000003814697},{"name":"bigPipe.sidebar-id.end","time":1348.4000005722046},{"name":"bigPipe.activity-panel-pipe-id.start","time":1348.5},{"name":"bigPipe.activity-panel-pipe-id.end","time":1349.1000003814697},{"name":"activityTabFullyLoaded","time":1414.5}],"measures":[],"correlationId":"7df8d149d9eaf9","effectiveType":"4g","downlink":9.5,"rtt":0,"serverDuration":130,"dbReadsTimeInMs":39,"dbConnsTimeInMs":52,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}