Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
In order to find out which tables have row level locking you can try the following:
use <DATABASE>
go
select name, objspare from sysobjects where type = 'U'
and sysstat2 & 57344 = 32768
order by name
go
Note that values sysstat2 & 57344 =0 or 8192 refer to all pages locks and 16384 is data pages locks.