Link to home
Start Free TrialLog in
Avatar of schinni
schinni

asked on

Regarding set implicit_transactions on

Hi,

Can anybody help me in understanding the advantages  and disadvantages
of setting the implicit_transactions on or off

thanks,
ASKER CERTIFIED SOLUTION
Avatar of nigelrivett
nigelrivett

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Guy Hengel [angelIII / a3]
There are not "advantages" or disadvantages as such. The difference is for your convenience or security.
-> Set it on mean that you need explicitely use commit to save the last statements to the database. This means you can rollback after you saw the flaw in your code (before issuing the commit)
-> Set it off means that each statement is automatically committed. this can be "dangereous" (see above)
Avatar of schinni
schinni

ASKER

nigelrivett,
Is there any strong reason why you recommend that
Avatar of schinni

ASKER

thanks very much