Answers

Question and Answer:

  Home  Sybase

⟩ What is a good example of a transaction in Sybase?

This answer is geared for Online Transaction Processing (OTLP) applications.

To gain maximum throughput all your transactions should be in stored procedures - see Q1.5.8. The transactions within each stored procedure should be short and simple. All validation should be done outside of the transaction and only the modification to the database should be done within the transaction. Also, don't forget to name the transaction for sp_whodo - see Q9.2.

The following is an example of a good transaction:

/* perform validation */

select ...

if ... /* error */

/* give error message */

else /* proceed */

begin

begin transaction acct_addition

update ...

insert ...

commit transaction acct_addition

end

 142 views

More Questions for you: