Very useful SQL statements (daily sorting), SQL statements

Source: Internet
Author: User

Very useful SQL statements (daily sorting), SQL statements

1./* Get the path and name of the trace file */

SELECT d.VALUE    || '/'    || LOWER (RTRIM (i.INSTANCE, CHR (0)))    || '_ora_'    || p.spid    || '.trc' trace_file_name FROM (SELECT p.spid     FROM v$mystat m, v$session s, v$process p     WHERE m.statistic# = 1 AND s.SID = m.SID AND p.addr = s.paddr) p,    (SELECT t.INSTANCE     FROM v$thread t, v$parameter v     WHERE v.NAME = 'thread'      AND (v.VALUE = 0 OR t.thread# = TO_NUMBER (v.VALUE))) i,    (SELECT VALUE     FROM v$parameter     WHERE NAME = 'user_dump_dest') d

2./* display the locked SQL statement */

select /*+ NO_MERGE(a) NO_MERGE(b) NO_MERGE(c) */ a.username, a.machine, a.sid,a.serial#, a.last_call_et "Seconds", b.id1, c.sql_text "SQL" from v$session a, v$lock b,v$sqltext c where a.username is not null and a.lockwait = b.kaddr and c.hash_value =a.sql_hash_value;

3./* view oracle hidden parameters */

select name,    value,    decode(isdefault, 'TRUE', 'Y', 'N') as "Default",    decode(ISEM, 'TRUE', 'Y', 'N') as SesMod,    decode(ISYM, 'IMMEDIATE', 'I', 'DEFERRED', 'D', 'FALSE', 'N') as SysMod,    decode(IMOD, 'MODIFIED', 'U', 'SYS_MODIFIED', 'S', 'N') as Modified,    decode(IADJ, 'TRUE', 'Y', 'N') as Adjusted,    description from ( --GV$SYSTEM_PARAMETER     select x.inst_id as instance,        x.indx + 1,        ksppinm as name,        ksppity,        ksppstvl as value,        ksppstdf as isdefault,        decode(bitand(ksppiflg / 256, 1), 1, 'TRUE', 'FALSE') as ISEM,        decode(bitand(ksppiflg / 65536, 3),            1,            'IMMEDIATE',            2,            'DEFERRED',            'FALSE') as ISYM,        decode(bitand(ksppstvf, 7), 1, 'MODIFIED', 'FALSE') as IMOD,        decode(bitand(ksppstvf, 2), 2, 'TRUE', 'FALSE') as IADJ,        ksppdesc as description     from x$ksppi x, x$ksppsv y     where x.indx = y.indx      and substr(ksppinm, 1, 1) = '_'      and x.inst_id = USERENV('Instance')) order by name;

4./* view the SQL statement based on the oracle pid in the system */

select /*+ ORDERED */ sql_text from v$sqltext a where (a.hash_value,a.address) IN (select decode (sql_hash_value,0,prev_hash_value,sql_hash_value),decode (sql_hash_value,0,prev_sql_addr,sql_address) from v$session b where b.paddr =( select addr from v$process c where c.spid = '&pid')) order by piece ASC;

The above is the article to share with you a few useful SQL statements, I hope you like it.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.