V Valgar Member² Apr 3, 2019 #1 Hi, is it possible that [TOracleSession].DBMS_Job.Submit(Id, Command, Now); automatically starts a transaction and a commit is needed for it to start?
Hi, is it possible that [TOracleSession].DBMS_Job.Submit(Id, Command, Now); automatically starts a transaction and a commit is needed for it to start?
Marco Kalter Administrator Staff member Apr 4, 2019 #1 That is indeed correct. DBMS_JOBs are part of the Oracle transaction and must be committed or rolled back. See also the Oracle Database PL/SQL Packages and Types Reference.
That is indeed correct. DBMS_JOBs are part of the Oracle transaction and must be committed or rolled back. See also the Oracle Database PL/SQL Packages and Types Reference.