vote up 0 vote down star

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.

flag

3 Answers

vote up 1 vote down check

aargh, just being an idiot:

SELECT    name, lockscheme(name)
FROM      sysobjects
WHERE     type="U"
ORDER BY  name
link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

The recommended way is to query the dynamic management view (DMV):

select * from sys.dm_tran_locks
link|flag
Mitch, that might be true for SQL Server, but it doesn't work for Sybase ASE. The answer above should be correct for all T-SQL variants. Out of curiosity, what does the DMV do for me that sysobjects doesn't? Aren't they just views on the same underlying system data? – ninesided Oct 14 '08 at 23:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.