TechTip: V5R2 Atomic Stored Procedure Change

SQL
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Before V5R2, SQL stored procedures that contained atomic compound-statements automatically issued a Rollback statement if the procedure encountered any errors during execution and a Commit statement if the procedure executed successfully. For example, if the Delete statement failed in the V5R1 procedure below, DB2 would issue a Rollback statement, and both the Insert and Delete statements would be rolled back. If both the Insert and Delete statements were successful, a Commit statement would be executed at the end of the stored procedure on pre-V5R2 systems.

CREATE PROCEDURE V5R1Procedure(IN parm1 INT)
LANGUAGE SQL
BEGIN ATOMIC

  INSERT INTO t1 VALUES (parm1,’A’);
  DELETE FROM t2 WHERE c1=33;

END


The implementation of atomic compound-statements changed in V5R2. However, this implementation change will not affect SQL procedures until they are re-created on a V5R2 system. Any existing atomic SQL stored procedure will continue to run as expected until that procedure is re-created on a V5R2 system. The V5R2 atomic implementation change requires the programmer to either add a COMMIT ON RETURN YES clause to the SQL stored procedure definition or change the invoking application to be responsible for committing or rolling back any changes made by the stored procedure.

The source for the V5R2Procedure shows how to add the COMMIT ON RETURN YES clause to maintain the pre-V5R2 behavior of an atomic SQL stored procedure.

CREATE PROCEDURE V5R2Procedure(IN parm1 INT)
LANGUAGE SQL
COMMIT ON RETURN YES
BEGIN ATOMIC

  INSERT INTO t1 VALUES (parm1,’A’);
  DELETE FROM t2 WHERE c1=33;

END


A good resource for learning more about SQL stored procedures is the Stored Procedures and Triggers on DB2 UDB for iSeries Redbook, which can be found online at ibm.com/redbooks.

Kent Milligan is DB2 UDB Technology Specialist on IBM's eServer Solutions Enablement team. He spent the first seven years at IBM as a member of the DB2 development team in Rochester. He can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it..

Kent Milligan
Kent Milligan is a Senior Db2 for i Consultant in the IBM Lab Services Power Systems Delivery Practice.  Kent has over 25 years of experience as a Db2 for IBM i consultant and developer working out of the IBM Rochester lab. Prior to re-joining the DB2 for i Lab Services practice in 2020, Kent spent 5 years working on healthcare solutions powered by IBM Watson technologies. Kent is a sought-after speaker and author on Db2 for i & SQL topics.
BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$

Book Reviews

Resource Center

  •  

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: