0

I am using savepoint and rollback in a my below pg script. Getting below error.

ERROR: unsupported transaction command in PL/pgSQL

Please help me how to achieve this.

do
$block$ 
declare
BEGIN
 perform updatecustdtls (
                  custdes               => 'initial state',         
                  custno            => 'C1122',
                  cmd       =>  TO_TIMESTAMP('11/21/2005','dd/mm/yyyy')::TIMESTAMP(0),
                  );   


 savepoint updatecust;                         

update custd set custid = 9 where custno = 'C1122';


    perform updatecustdtls (
                  custdes               => 'middle state',         
                  custno            => 'C4455',
                  cmd       =>  TO_TIMESTAMP('11/11/2006','dd/mm/yyyy')::TIMESTAMP(0),
                  );

rollback to updatecust;  

    perform updatecustdtls (
                  custdes               => 'final state',         
                  custno            => 'C88809',
                  cmd       =>  TO_TIMESTAMP('08/15/2007','dd/mm/yyyy')::TIMESTAMP(0),
                  );

end $block$; 

Thanks in advance.

4
  • dba.stackexchange.com/questions/145778/… Commented Nov 6, 2019 at 13:42
  • 1
    Possible duplicate of PostgreSQL cannot begin/end transactions in PL/pgSQL Commented Nov 6, 2019 at 13:43
  • Just drop the plpgsql wrapper (and replace perform with select). You don't need any PL/pgsql here. Commented Nov 7, 2019 at 1:23
  • could you please help me how to achieve my scenario. Savepoint and rollback. Commented Nov 7, 2019 at 7:21

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.