Difference between revisions of "WebSphere and locking issues"
1145978054 (Talk | contribs) |
1148272574 (Talk | contribs) |
||
Line 67: | Line 67: | ||
[http://blog.yukonho.com/index.php?blog=41 cheap prom dresses] | [http://blog.yukonho.com/index.php?blog=41 cheap prom dresses] | ||
[http://blog.yukonho.com/index.php?blog=42 sexy prom dresses] | [http://blog.yukonho.com/index.php?blog=42 sexy prom dresses] | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <div style="display:none"> | ||
+ | [We are delicate. We do not delete your content.] | ||
+ | [l_sp4] | ||
+ | |||
+ | |||
+ | [http://www.buddyprofile.com/viewprofile.php?username=waterfordcrystal waterford crystal] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=swarovskicrystal swarovski crystal bead] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=mesotheliomalawsuits mesothelioma lawsuits] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=mesotheliomasymptoms mesothelioma symptoms] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=mesotheliomadiag mesothelioma diagnosis] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=wacoalbras wacoal bras] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=teenbra teen bra] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=unsecuredloan unsecured signature loan] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=homeloans Countrywide Home Loans] | ||
+ | [http://blog.moddingplanet.it/?w=formalpromdresses Formal Prom Dresses] | ||
+ | [http://blog.moddingplanet.it/?w=sexypromdress Sexy Prom Dress] | ||
+ | [http://blog.moddingplanet.it/?w=cocktaildresses cocktail dresses] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=telmobile TMobile] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=watersoftener water softener] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=tanklesswaterheater tankless water heater] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=rockportshoes rockport shoes] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=osmosiswaterfilter reverse osmosis water filter] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=merrellshoes merrell shoes] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=oscardresses oscar dresses] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=easterdresses easter dresses] | ||
+ | [http://flyfone.blox.pl/resource/flyfonevoip.htm flyfone voip] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=plussizepromdresses plus size prom dresses] | ||
+ | [http://www.buddyprofile.com/viewprofile.php?username=discountpromdresses discount prom dresses] | ||
+ | [http://blog.moddingplanet.it/?w=hooterscasinolas Hooters Casino Las Vegas] | ||
+ | [http://blog.moddingplanet.it/?w=grandcasinomille grand casino mille lacs] | ||
+ | [http://blog.moddingplanet.it/?w=lasvegascasino las vegas casino coupons] | ||
+ | [http://blog.moddingplanet.it/?w=onlinepokeraide online poker aide] | ||
+ | [http://www.donx.de/blog/pechangacasino pechanga casino] | ||
+ | [http://www.donx.de/blog/grandvictoriacasino/ grand victoria casino] | ||
+ | [http://www.donx.de/blog/ballgowns/ ball gowns] | ||
+ | [http://www.privetparis.com/blog/rtgcasinobonus/ rtg casino bonus] | ||
+ | |||
+ | [http://blog.moddingplanet.it/?w=rtgcasinobonus rtg casino bonus] | ||
+ | [http://blog.moddingplanet.it/?w=grandcasinocoushat grand casino coushatta] | ||
+ | [http://blog.moddingplanet.it/?w=grandcasinohinckle grand casino hinckley] | ||
+ | [http://blog.moddingplanet.it/?w=isleofcapricasino isle of capri casino] | ||
+ | [http://blog.moddingplanet.it/?w=mohegansuncasino mohegan sun casino] | ||
+ | [http://blog.moddingplanet.it/?w=palacasino pala casino] | ||
+ | [http://blog.moddingplanet.it/?w=roulettewheels roulette wheels] | ||
+ | [http://blog.moddingplanet.it/?w=winstarcasino winstar casino] | ||
+ | [http://blog.moddingplanet.it/?w=cheappromdresses Cheap Prom Dresses] | ||
+ | [http://blog.moddingplanet.it/?w=informalweddingdre informal wedding dresses] | ||
+ | [http://blog.moddingplanet.it/?w=oscardresses oscar dresses] | ||
+ | [http://blog.moddingplanet.it/?w=eveninggowns evening gowns] | ||
</div> | </div> |
Revision as of 05:12, 22 May 2006
Using WebSphere on a Sybase ASE database can cause some problems with regard to locking in ASE. The default transaction isolation level for ASE is 1 (read committed), however the default behaviour of WebSphere is to use isolation level 2 (repeatable read). This has the effect that even rows that are read will be kept locked until the transaction has finished. In turn, this can lead to a high change of sessions blocking each other or the need to raise to ASE configuration parameter "number of locks" to a very high number (more than 1 million is not uncommon). To resolve this the WebSphere developers need to override the isolation level.
Note: to see what isolation level a running spid is using do this:
dbcc traceon(3604) go dbcc pss(0,<spid>) go
Look in the output for value after "pisolation" (somewhere halfway in the output).