Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: DBA_OBJECTS
Bunyamin,
Why don't you use v$locked_object ?
"Bunyamin K. Karadeniz" wrote:
I
want to select locked_objects in a view.I
runCREATE OR REPLACE VIEW
V_BUN_LOCKED_OBJECTS AS SELECT
sn.username, m.sid, m.type,
DECODE(m.lmode,
0, 'None'
WHERE sn.sid = m.sid AND m.id1 = obj1.object_id (+) AND m.id2 = obj2.object_id (+) AND lmode != 4 ; and
-- Web: http://www.unal-bilisim.com ********* Questions and Answers: http://www.unal-bilisim.com/qa/discus/ ********* itrprof SQL Analyzer: http://www.unal-bilisim.com/products/itrprof/itrprof.html itrprof SQL Analyzer is a web based tool which analyzes SQL_TRACE/Event10046 trace files of Oracle, finds bottlenecks and offersinformation on how to tune them. ********* iOraBugFinder: http://www.unal-bilisim.com/products/iorabugfinder/iorabugfinder.html iOraBugFinder is a web based tool which scans Oracle's alert log files, ORA-600 and ORA-7445 trace files; extracts relevant information from them and generates URL links to relevant bugs, notes, forums at Metalink. *********Received on Mon Jun 04 2001 - 04:20:45 CDT