Rollback any duplicate occured using EXIT HANDLER












0















I have two INT integer types in my table that set as UNIQUE KEY to avoid duplication. I wanted to rollback any duplicate occur in my stored procedure using EXIT HANDLER.



CREATE TABLE curriculum
(
id INT PRIMARY KEY AUTO_INCREMENT,
gradelevel_id INT,
schoolyear_id INT,
CONSTRAINT uc_curriculum UNIQUE (gradelevel_id, schoolyear_id)
)

DELIMITER //
CREATE PROCEDURE insertCurriculum(
IN pIN_gradelevelId INT,
IN pIN_schoolyearId INT
)
BEGIN

DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
ROLLBACK;
SELECT "Duplicate keys found";
RESIGNAL;
END;

INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (pIN_gradelevelId, pIN_schoolyearId);

END //
DELIMITER ;


I inserted manually in my curriculum table for the test.



INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (1, 1);

SELECT * FROM curriculum

`id | gradelevel_id | schoolyear_id
1 1 1`


FIRST TRY:



Calling my first stored procedure that has duplicate it automatically rollback.



call insertCurriculum(1, 1);
call insertCurriculum(2, 2);

SELECT * FROM curriculum

`id | gradelevel_id | schoolyear_id
1 1 1`


SECOND TRY:



Calling my first stored procedure that has no duplicate it allows the first stored procedure to be executed and insert into my table. Even the second stored procedure has duplicate. I wanted to rollback this. How can I achieve this? Any tips will greatly appreciated!



call insertCurriculum(2, 2);
call insertCurriculum(1, 1);

SELECT * FROM curriculum

`id | gradelevel_id | schoolyear_id
1 1 1
2 2 2`









share|improve this question














bumped to the homepage by Community 6 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    0















    I have two INT integer types in my table that set as UNIQUE KEY to avoid duplication. I wanted to rollback any duplicate occur in my stored procedure using EXIT HANDLER.



    CREATE TABLE curriculum
    (
    id INT PRIMARY KEY AUTO_INCREMENT,
    gradelevel_id INT,
    schoolyear_id INT,
    CONSTRAINT uc_curriculum UNIQUE (gradelevel_id, schoolyear_id)
    )

    DELIMITER //
    CREATE PROCEDURE insertCurriculum(
    IN pIN_gradelevelId INT,
    IN pIN_schoolyearId INT
    )
    BEGIN

    DECLARE EXIT HANDLER FOR SQLEXCEPTION
    BEGIN
    ROLLBACK;
    SELECT "Duplicate keys found";
    RESIGNAL;
    END;

    INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (pIN_gradelevelId, pIN_schoolyearId);

    END //
    DELIMITER ;


    I inserted manually in my curriculum table for the test.



    INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (1, 1);

    SELECT * FROM curriculum

    `id | gradelevel_id | schoolyear_id
    1 1 1`


    FIRST TRY:



    Calling my first stored procedure that has duplicate it automatically rollback.



    call insertCurriculum(1, 1);
    call insertCurriculum(2, 2);

    SELECT * FROM curriculum

    `id | gradelevel_id | schoolyear_id
    1 1 1`


    SECOND TRY:



    Calling my first stored procedure that has no duplicate it allows the first stored procedure to be executed and insert into my table. Even the second stored procedure has duplicate. I wanted to rollback this. How can I achieve this? Any tips will greatly appreciated!



    call insertCurriculum(2, 2);
    call insertCurriculum(1, 1);

    SELECT * FROM curriculum

    `id | gradelevel_id | schoolyear_id
    1 1 1
    2 2 2`









    share|improve this question














    bumped to the homepage by Community 6 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0








      I have two INT integer types in my table that set as UNIQUE KEY to avoid duplication. I wanted to rollback any duplicate occur in my stored procedure using EXIT HANDLER.



      CREATE TABLE curriculum
      (
      id INT PRIMARY KEY AUTO_INCREMENT,
      gradelevel_id INT,
      schoolyear_id INT,
      CONSTRAINT uc_curriculum UNIQUE (gradelevel_id, schoolyear_id)
      )

      DELIMITER //
      CREATE PROCEDURE insertCurriculum(
      IN pIN_gradelevelId INT,
      IN pIN_schoolyearId INT
      )
      BEGIN

      DECLARE EXIT HANDLER FOR SQLEXCEPTION
      BEGIN
      ROLLBACK;
      SELECT "Duplicate keys found";
      RESIGNAL;
      END;

      INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (pIN_gradelevelId, pIN_schoolyearId);

      END //
      DELIMITER ;


      I inserted manually in my curriculum table for the test.



      INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (1, 1);

      SELECT * FROM curriculum

      `id | gradelevel_id | schoolyear_id
      1 1 1`


      FIRST TRY:



      Calling my first stored procedure that has duplicate it automatically rollback.



      call insertCurriculum(1, 1);
      call insertCurriculum(2, 2);

      SELECT * FROM curriculum

      `id | gradelevel_id | schoolyear_id
      1 1 1`


      SECOND TRY:



      Calling my first stored procedure that has no duplicate it allows the first stored procedure to be executed and insert into my table. Even the second stored procedure has duplicate. I wanted to rollback this. How can I achieve this? Any tips will greatly appreciated!



      call insertCurriculum(2, 2);
      call insertCurriculum(1, 1);

      SELECT * FROM curriculum

      `id | gradelevel_id | schoolyear_id
      1 1 1
      2 2 2`









      share|improve this question














      I have two INT integer types in my table that set as UNIQUE KEY to avoid duplication. I wanted to rollback any duplicate occur in my stored procedure using EXIT HANDLER.



      CREATE TABLE curriculum
      (
      id INT PRIMARY KEY AUTO_INCREMENT,
      gradelevel_id INT,
      schoolyear_id INT,
      CONSTRAINT uc_curriculum UNIQUE (gradelevel_id, schoolyear_id)
      )

      DELIMITER //
      CREATE PROCEDURE insertCurriculum(
      IN pIN_gradelevelId INT,
      IN pIN_schoolyearId INT
      )
      BEGIN

      DECLARE EXIT HANDLER FOR SQLEXCEPTION
      BEGIN
      ROLLBACK;
      SELECT "Duplicate keys found";
      RESIGNAL;
      END;

      INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (pIN_gradelevelId, pIN_schoolyearId);

      END //
      DELIMITER ;


      I inserted manually in my curriculum table for the test.



      INSERT INTO curriculum (gradelevel_id, schoolyear_id) VALUES (1, 1);

      SELECT * FROM curriculum

      `id | gradelevel_id | schoolyear_id
      1 1 1`


      FIRST TRY:



      Calling my first stored procedure that has duplicate it automatically rollback.



      call insertCurriculum(1, 1);
      call insertCurriculum(2, 2);

      SELECT * FROM curriculum

      `id | gradelevel_id | schoolyear_id
      1 1 1`


      SECOND TRY:



      Calling my first stored procedure that has no duplicate it allows the first stored procedure to be executed and insert into my table. Even the second stored procedure has duplicate. I wanted to rollback this. How can I achieve this? Any tips will greatly appreciated!



      call insertCurriculum(2, 2);
      call insertCurriculum(1, 1);

      SELECT * FROM curriculum

      `id | gradelevel_id | schoolyear_id
      1 1 1
      2 2 2`






      mysql






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 21 '17 at 4:25









      FrancisunoxxFrancisunoxx

      1011




      1011





      bumped to the homepage by Community 6 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 6 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Your question is very unclear, but maybe I can still answer it.



          Why is it unclear?

          What do you mean with duplicates exactly? In your examples there are none. A duplicate relates to rows. You would have a duplicate in your table, if you tried to insert (1, 1) two times.



          If you meant with duplicates, that it shouldn't be allowed to have the same value in both columns, then you will have to catch that with a trigger. Create a before insert trigger and have the code something along the line if (new.gradelevel_id = new.schoolyear_id) then signal...; end if;



          Anyway...(some more explaining)

          In your procedure there won't be any rollback, cause there's nothing to roll back. A rollback statement only makes sense, when your transaction consists of multiple statements. To have multiple statements in a transaction you either have the auto_commit variable set to 0 or you explicitly start a transaction with START TRANSACTION; When you didn't do either, a single statement is also a transaction. When a statement fails, it is undone, you won't see it partially applied on the data. And like I said, the ROLLBACK is meant for the other statements in the transaction that have already executed.



          Finally, a hint:

          You might also want to have a look at INSERT IGNORE (you have already fulfilled the prerequisite of having a unique index). This way there won't be any errors when duplicates occur and your code keeps running without interruption.






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "182"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f176841%2frollback-any-duplicate-occured-using-exit-handler%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Your question is very unclear, but maybe I can still answer it.



            Why is it unclear?

            What do you mean with duplicates exactly? In your examples there are none. A duplicate relates to rows. You would have a duplicate in your table, if you tried to insert (1, 1) two times.



            If you meant with duplicates, that it shouldn't be allowed to have the same value in both columns, then you will have to catch that with a trigger. Create a before insert trigger and have the code something along the line if (new.gradelevel_id = new.schoolyear_id) then signal...; end if;



            Anyway...(some more explaining)

            In your procedure there won't be any rollback, cause there's nothing to roll back. A rollback statement only makes sense, when your transaction consists of multiple statements. To have multiple statements in a transaction you either have the auto_commit variable set to 0 or you explicitly start a transaction with START TRANSACTION; When you didn't do either, a single statement is also a transaction. When a statement fails, it is undone, you won't see it partially applied on the data. And like I said, the ROLLBACK is meant for the other statements in the transaction that have already executed.



            Finally, a hint:

            You might also want to have a look at INSERT IGNORE (you have already fulfilled the prerequisite of having a unique index). This way there won't be any errors when duplicates occur and your code keeps running without interruption.






            share|improve this answer




























              0














              Your question is very unclear, but maybe I can still answer it.



              Why is it unclear?

              What do you mean with duplicates exactly? In your examples there are none. A duplicate relates to rows. You would have a duplicate in your table, if you tried to insert (1, 1) two times.



              If you meant with duplicates, that it shouldn't be allowed to have the same value in both columns, then you will have to catch that with a trigger. Create a before insert trigger and have the code something along the line if (new.gradelevel_id = new.schoolyear_id) then signal...; end if;



              Anyway...(some more explaining)

              In your procedure there won't be any rollback, cause there's nothing to roll back. A rollback statement only makes sense, when your transaction consists of multiple statements. To have multiple statements in a transaction you either have the auto_commit variable set to 0 or you explicitly start a transaction with START TRANSACTION; When you didn't do either, a single statement is also a transaction. When a statement fails, it is undone, you won't see it partially applied on the data. And like I said, the ROLLBACK is meant for the other statements in the transaction that have already executed.



              Finally, a hint:

              You might also want to have a look at INSERT IGNORE (you have already fulfilled the prerequisite of having a unique index). This way there won't be any errors when duplicates occur and your code keeps running without interruption.






              share|improve this answer


























                0












                0








                0







                Your question is very unclear, but maybe I can still answer it.



                Why is it unclear?

                What do you mean with duplicates exactly? In your examples there are none. A duplicate relates to rows. You would have a duplicate in your table, if you tried to insert (1, 1) two times.



                If you meant with duplicates, that it shouldn't be allowed to have the same value in both columns, then you will have to catch that with a trigger. Create a before insert trigger and have the code something along the line if (new.gradelevel_id = new.schoolyear_id) then signal...; end if;



                Anyway...(some more explaining)

                In your procedure there won't be any rollback, cause there's nothing to roll back. A rollback statement only makes sense, when your transaction consists of multiple statements. To have multiple statements in a transaction you either have the auto_commit variable set to 0 or you explicitly start a transaction with START TRANSACTION; When you didn't do either, a single statement is also a transaction. When a statement fails, it is undone, you won't see it partially applied on the data. And like I said, the ROLLBACK is meant for the other statements in the transaction that have already executed.



                Finally, a hint:

                You might also want to have a look at INSERT IGNORE (you have already fulfilled the prerequisite of having a unique index). This way there won't be any errors when duplicates occur and your code keeps running without interruption.






                share|improve this answer













                Your question is very unclear, but maybe I can still answer it.



                Why is it unclear?

                What do you mean with duplicates exactly? In your examples there are none. A duplicate relates to rows. You would have a duplicate in your table, if you tried to insert (1, 1) two times.



                If you meant with duplicates, that it shouldn't be allowed to have the same value in both columns, then you will have to catch that with a trigger. Create a before insert trigger and have the code something along the line if (new.gradelevel_id = new.schoolyear_id) then signal...; end if;



                Anyway...(some more explaining)

                In your procedure there won't be any rollback, cause there's nothing to roll back. A rollback statement only makes sense, when your transaction consists of multiple statements. To have multiple statements in a transaction you either have the auto_commit variable set to 0 or you explicitly start a transaction with START TRANSACTION; When you didn't do either, a single statement is also a transaction. When a statement fails, it is undone, you won't see it partially applied on the data. And like I said, the ROLLBACK is meant for the other statements in the transaction that have already executed.



                Finally, a hint:

                You might also want to have a look at INSERT IGNORE (you have already fulfilled the prerequisite of having a unique index). This way there won't be any errors when duplicates occur and your code keeps running without interruption.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 21 '17 at 6:51









                tombomtombom

                2,34511222




                2,34511222






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Database Administrators Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f176841%2frollback-any-duplicate-occured-using-exit-handler%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL Server 17 - Attemping to backup to remote NAS but Access is denied

                    Always On Availability groups resolving state after failover - Remote harden of transaction...

                    Restoring from pg_dump with foreign key constraints