<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: When commit is executed, it commits all the other users DMLs as well not only the specific login user in Oracle DB. in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60705#M14121</link>
    <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c9c629c5-7fd4-4522-b5d2-7141976fa7d0" data-tag-text="@Goutham Mane" href="https://community.blueprism.com/network/profile?UserKey=c9c629c5-7fd4-4522-b5d2-7141976fa7d0" data-itemmentionkey="7546212e-23df-4655-81cf-d193c0193f99"&gt;@Goutham Mane&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Can you please provide more insights on the issue. How are you performing the commit statement?​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ritansh Jatwani Senior Consultant&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Gurgaon&lt;BR /&gt;*If you find this post helpful mark it as best answer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Sat, 31 Jul 2021 19:14:00 GMT</pubDate>
    <dc:creator>ritansh.jatwani</dc:creator>
    <dc:date>2021-07-31T19:14:00Z</dc:date>
    <item>
      <title>When commit is executed, it commits all the other users DMLs as well not only the specific login user in Oracle DB.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60704#M14120</link>
      <description>HI All,&lt;BR /&gt;I am facing some issue on below.&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;When commit is executed, it commits all the other users DMLs as well not only the specific login user in Oracle DB.&lt;/P&gt;
Pl help me on the same.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Goutham Mane Tech Lead&lt;BR /&gt;Lead Technical Trainer&lt;BR /&gt;TechMahindra&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Jul 2021 05:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60704#M14120</guid>
      <dc:creator>GouthamMane</dc:creator>
      <dc:date>2021-07-30T05:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: When commit is executed, it commits all the other users DMLs as well not only the specific login user in Oracle DB.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60705#M14121</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c9c629c5-7fd4-4522-b5d2-7141976fa7d0" data-tag-text="@Goutham Mane" href="https://community.blueprism.com/network/profile?UserKey=c9c629c5-7fd4-4522-b5d2-7141976fa7d0" data-itemmentionkey="7546212e-23df-4655-81cf-d193c0193f99"&gt;@Goutham Mane&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Can you please provide more insights on the issue. How are you performing the commit statement?​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ritansh Jatwani Senior Consultant&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Gurgaon&lt;BR /&gt;*If you find this post helpful mark it as best answer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 31 Jul 2021 19:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60705#M14121</guid>
      <dc:creator>ritansh.jatwani</dc:creator>
      <dc:date>2021-07-31T19:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: When commit is executed, it commits all the other users DMLs as well not only the specific login user in Oracle DB.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60706#M14122</link>
      <description>If you want to commit a single statement use should use an autonomous transaction . Example :&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class="language-sql" data-lang="sql"&gt;&lt;SPAN&gt;CREATE&lt;/SPAN&gt; &lt;SPAN&gt;OR&lt;/SPAN&gt; &lt;SPAN&gt;REPLACE&lt;/SPAN&gt; &lt;SPAN&gt;PROCEDURE&lt;/SPAN&gt; p_insert
&lt;SPAN&gt;AS&lt;/SPAN&gt;
PRAGMA AUTONOMOUS_TRANSACTION;

&lt;SPAN&gt;BEGIN&lt;/SPAN&gt; &lt;SPAN&gt;-- Main transaction suspends here.
&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN&gt;INSERT&lt;/SPAN&gt; &lt;SPAN&gt;INTO&lt;/SPAN&gt; your_table &lt;SPAN&gt;VALUES&lt;/SPAN&gt; (&lt;SPAN&gt;1&lt;/SPAN&gt;); &lt;SPAN&gt;-- Autonomous transaction begins here.
&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;COMMIT&lt;/SPAN&gt;; &lt;SPAN&gt;-- Autonomous transaction ends here.
&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN&gt;END&lt;/SPAN&gt;; &lt;SPAN&gt;-- Main transaction resumes here.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;Vipul Tiwari&lt;BR /&gt;Senior Process Simplification and Optimization Designer(Solutions Architect)&lt;BR /&gt;Fidelity International&lt;BR /&gt;------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Sep 2021 11:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/When-commit-is-executed-it-commits-all-the-other-users-DMLs-as/m-p/60706#M14122</guid>
      <dc:creator>EVIPUTI</dc:creator>
      <dc:date>2021-09-03T11:08:00Z</dc:date>
    </item>
  </channel>
</rss>

