DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: MTS

  1. #1
    Join Date
    Apr 2001
    Posts
    126

    Post

    how to find wheather MTS is configured correctly and system in running on MTS instead of Dedicated.

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Look at the "SERVER" column from the following query. If the value is "DEDICATED" they those sessions are not using MTS. The "SERVER" column will be "NONE" or "SHARED" if those sessions are using MTS.

    set pages 50
    col kill_by for a10
    col username for a12
    col program for a40
    col "MACHINE/PID" for a20
    set linesize 132
    set pages 100
    select '''' || s.sid ||','||s.serial# || '''' kill_by,
    p.spid server_pid, s.username, s.program,
    decode(s.process, NULL, s.machine, s.machine || ' PID: ' || to_char(s.process)) "MACHINE/PID" ,
    s.server, s.status
    from v$session s, v$process p
    where s.username is not null
    and s.paddr = p.addr
    order by to_number(p.spid)
    /
    Jeff Hunter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width