3

Is there some means of querying the system tables to establish which tables are using what locking schemes? I took a look at the columns in sysobjects but nothing jumped out.

ninesided
  • 23,085
  • 14
  • 83
  • 107

2 Answers2

1

aargh, just being an idiot:

SELECT    name, lockscheme(name)
FROM      sysobjects
WHERE     type="U"
ORDER BY  name
ninesided
  • 23,085
  • 14
  • 83
  • 107
0

take a look at the syslockinfo and syslocks system tables you can also run the sp_lock proc

SQLMenace
  • 132,095
  • 25
  • 206
  • 225