-
-
Save velll/2c9ef01baaf6f7a10b37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT sn.username, m.sid, m.type, | |
| DECODE(m.lmode, 0, 'None', | |
| 1, 'Null', | |
| 2, 'Row Share', | |
| 3, 'Row Excl.', | |
| 4, 'Share', | |
| 5, 'S/Row Excl.', | |
| 6, 'Exclusive', | |
| lmode, ltrim(to_char(lmode,'990'))) lmode, | |
| DECODE(m.request,0, 'None', | |
| 1, 'Null', | |
| 2, 'Row Share', | |
| 3, 'Row Excl.', | |
| 4, 'Share', | |
| 5, 'S/Row Excl.', | |
| 6, 'Exclusive', | |
| request, ltrim(to_char(m.request, | |
| '990'))) request, m.id1, m.id2 | |
| FROM v$session sn, v$lock m | |
| WHERE (sn.sid = m.sid AND m.request != 0) | |
| OR (sn.sid = m.sid | |
| AND m.request = 0 AND lmode != 4 | |
| AND (id1, id2) IN (SELECT s.id1, s.id2 | |
| FROM v$lock s | |
| WHERE request != 0 | |
| AND s.id1 = m.id1 | |
| AND s.id2 = m.id2) | |
| ) | |
| ORDER BY id1, id2, m.request; | |
| / | |
| -- http://www.sql.ru/forum/569370/kak-uznat-kto-blokiruet-stroku-tablicy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment