How to find server process?

how to find which server process(dedicated or shared)is using by the database for client connection to the DB?
Thankx..

SQL> select distinct server from v$session;
SERVER
DEDICATED
SQL> select * from v$circuit;
no rows selected
If there is shared client connection , there will be entry in v$circuit
Cheer,
Virag Sharma

Similar Messages

  • How to find the processing time of any query?

    im using oracle express edition, can anyone help me, how to find the processing time of any query?

    Trace the query and tkprof the generated trace file.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/sqltrace.htm#PFGRF01010

  • How to find server model from 11g OEM mgmt$ views

    How to find server model from 11g OEM mgmt$ views
    server model like Dell 710, DL380 G7 etc..,

    It is included in this query (run as user SYSMAN):
    SELECT t.target_name AS host_name,
    ecm_util.HOST_HOME_LIST (t.target_name, t.target_type) AS home_info,
    hw.vendor_name AS Vendor,
    hw.system_config AS System_Config,
    hw.machine_architecture Architecture,
    os.name AS os_name,
    os.base_version os_base_version,
    os.update_level os_update_level,
    os.address_length_in_bits os_address_length_in_bits
    FROM mgmt_targets t, mgmt_ecm_snapshot s, mgmt_hc_os_summary os, MGMT_HC_HARDWARE_MASTER hw
    WHERE t.target_type = 'host'
    AND t.target_name = s.target_name
    AND s.snapshot_type = 'host_configuration'
    AND s.target_type = 'host'
    AND s.is_current = 'Y'
    AND s.snapshot_guid = os.snapshot_guid
    AND hw.snapshot_guid = s.snapshot_guid
    ORDER by t.target_type
    The asked info is available in the view MGMT_HC_HARDWARE_MASTER, column: SYSTEM_CONFIG
    Eric

  • How to find the process running for a specific cube on WINDOWS?

    Hi,
    how do we find the process of a cube and kill it if the server is a win 2003 server...
    when i go to the task manaer and search I only see then as esssvr ? but how do I match them to the specif cubes??
    in UNIX we can see them clearly as they have the cube name along with the pid and evertything else...
    please let me know.
    Thanks in advance.

    you actually have to go into the Essbase server log. When the application starts its pid is put in the log. I don't remember the mesage number, but it's in the log somewhere around a message started. Make sure you get the last started pid for an application. since the log can be for a long period, the application could have started multiple times
    Message was edited by:
    GlennS

  • How to find the process responsible for deleting files

    Hi,
    We have a process which stores a file in a particular location say /tmp/mydir/. The files getting stored in this directory are getting deleted. Is there any way to find which process is responsible for deleting the file. Is there any way we can truss on the directory/file and check which process accessed it or deleted it.

    solquestions wrote:
    I tried: dtrace -n syscall::unlink:entryThat one looks good to me.
    While it picks up the unlinking(I tested by doing a rm of some files), I could not get the pid of the process doing such rm.....(or maybe the process exited...)You haven't asked it to print that information. Try:
    dtrace -n 'syscall::unlink:entry {trace(pid);trace(execname)}'
    I'd like to see the process/adpp/program, calling a particular system call....unlink, close, open etc etc...The above should do that.
    I wonder if dtrace can capture both library calls and system calls......Dtrace doesn't capture so much as it fires on probes. But yes, both libraries and system calls can have probes available.
    It seems functionality for capturing system calls from a process are more documrnte, and with examples, than, those asking for finding which system calls get opened by whom....
    I think all you're missing is adding some information to the trace output.
    Is getting unlink enough to find "what is removing files?"You might want to check rename as well.
    How do I drrace for "anything that touched taht file" or, "anything that touches files in a directory"That's actually a somewhat difficult task for dtrace. First, you might download the "Dtrace toolkit". One of the tools in there is "opensnoop". It reports on file opens and you can examine the script to see how it does it. You can even give a filename and it only reports when that filename is accessed.
    But the main problem is that files can have many names, and dtrace is just looking at the name in many cases. So "/etc/passwd" can be called "/etc/passwd", or if you're in /usr it could be called "../etc/passwd", or any of a variety of names. It's not too hard to set a probe predicate to fire only on a pattern match, so you could set it to only fire when the filename is matched.
    Good luck, and see if any of the existing tools in the toolkit are close enough that you can use them directly or modify them slightly.
    Darren

  • How to find business process diagrams of SAP reference model

    hello guys,
      I am reading book 'SAP R/3 Business Blueprint: Understanding Enterprise Supply Chain Management' recently. In this book, the author shows many EPC process diagrams of SAP reference model,but how could I find the process diagrams in SAP system.
      I google this 'SAP Reference model', and find transaction: SB09 Business Navigator-Process view. But I can not find this transaction in IDES4.7or ECC6 IDES.
    Thanks.
    Edited by: Justin on Jul 2, 2009 10:20 AM

    Hi RK v ,
    I really don't know what your actual requirement is , but if you want to know the objects as per the modification , then transport request will be much help to you .
    Have a look into table E070 and E071 .
    Regards ,
    Yogendra Bhaskar

  • How to configure server process in sld add server in configtool

    hi friends
    i  have added the server process in  configtool after restaring the server  sld server is stoped it not staring and it gives a messge that configur server process in sld adiminstration
    can any one help how to configure the server in sld ?
    and what are ther prerequesties that i need to take  when i am adding sever proces in configtool and how many server proces i can add in the java engin
    after incersing server proces how to configur in sld ?
    regards
    raja

    hi janu
    thanks for responding
    i know how to configur  was abap and was java in sld. i have issue when i add 2  server process in configtool , sld server is stoped there it is giveing maintal profile in the sld administration. i would like to know what need to me manintatinge in sld this is my issue .
    regards
    raja

  • How to find query processing time?

    im using Oracle Express Edition
    i want to find the processing time of a query?,
    anyone please specify briefly how to find the query processing time
    can i get the processing time of a query by using Express edition or should i install Enterprise Edition.
    with regards,
    ravikanth.

    This link will help
    http://forums.oracle.com/forums/thread.jspa?threadID=2210335&tstart=0

  • How to find a process is running or not.

    Hi All,
    I would like to find out whether a process is running or not. How to find out?
    Thank you,
    Kranthi.

    Process
    public abstract int exitValue()
    Returns the exit value for the subprocess.
    Returns:
    the exit value of the subprocess represented by this Process object.
    By convention, the value 0 indicates normal termination.
    Throws:
    IllegalThreadStateException - if the subprocess represented by this Process object has not yet terminated.
    */

  • How to find deleted process chain and query

    Hi All
    Some body has deleted one process chain and one query from development system
    how can i know who has deleted these?
    is there any table where deleted process chain and queries will maintain????
    Thanks & Regards,
    Krishna
    Edited by: krishnamurthy g on Sep 1, 2008 5:33 PM

    Hi,
    Usually its totally in tractable to find a deleted chain :
    But you can try out with the following options:
    1> T-code SLG2 .
    2> T-code SLG1 - find out who was logged on to the system on that particular client at that time.
    3> Try out the following tables in se16 :
    RSPCLOGS           --- Application Logs for the Process Chains
    RSPCLOGCHAIN    --- Cross-Table Log ID / Chain ID
    RSPCCOMMANDLOG --- System Command Execution Logs (Process Chains) .
    Hope it will be expedite.
    Thax & Regards.
    Vaibhave Sharma

  • How to find Server Information and MIME

    I'm working on a simple http server and was wondering how I could obtain the Server information?
    Example Server informations are:
    CERN/3.0
    or
    Server:�Apache/1.3.26�(Unix)�PHP/4.1.2�mod_ssl/2.8.10�OpenSSL/0.9.6(CR)
    something like this...
    and how do i obtain the mime information?
    Example MIME info is:
    MIME-Version: 1.0
    Thanks in advance!

    Please clarify: are you working on an HTTP server or an HTTP client? If the former, are you wanting to know what your server should output in response to a request? If the latter, are you wanting to know how to parse the response?

  • How to find a process chain in RSPC if u know the Chain ID?

    Hi,
    is there any way to know the process chain if u cud know the chainid fro the same?
    i had find the option "find" that does not have the finding PC by its ID
    by description it is taking ages to find one PC
    Raj

    Dear Raj Karan  ,
    Go to RSPC
    Just try to widen  the window ,by moving ur cursor to the part where blue screen and greyish screen meets ..
    Once you widen ,you could see the
    Obj name ,no and description of PC
    Also you can try giving ur description in
    RSPC1.
    Hope it helps
    Regards
    Bala

  • How to find server acknoldegement??

    Hi all,
    I am using JMS API to send message from client to AS 9.0. Its working fine.
    But i dont know how the client program will know that the server received its message or not??
    ie. is it possible the server acknowledge the message of the client??
    There is some method like AUTO_ACKNOWLEDGE and CLIENTACKNOWLEDGE. I dont know how to implement ?? Can anybody help me if possible with piece of code??
    thank you,

    Safari is a web browser, not a server.
    What exactly are you trying to do?

  • Wired memory counts up to 100%, how to find unknown process leaking memory

    Hi,
    On my Macbook Pro 2011, 8GB wired memory counts up to 100% over a period of 4-5 regular usage days. The more I use the macbook, the more wired memory grows until I have to restart again, otherwise the machine becomes slow because it uses the harddrive for memory. This is not normal behavior!
    Attached is a screenshot of the activity monitor. I'm not able to identify the process which leaks the wired memory.
    I had once an eyeopening experience: I was about to restart my macbook totally overloaded by wired memory but then I canceled the shutdown because of some reason. Some of the processes and programmes were already terminated and SURPRISE, the wired memory was down to 10%! The 8 Gb were all of a sudden shared by free, active and inactive memory, as it should be! So some process was terminated during shutdown which caused the leak and even freed all of the wired memory. I did work with the macbook for 2 more days without any memory problem. Once I restarted, the leaking problem started again.
    My gut-feeling says the hole problem started when I installed VM Ware Fusion a while ago. But I did a clean uninstall.
    The solution could be to identify the leaking process, but how should I do this? It is also not clear to me wether wired memory is real, virtual, private or shared memory displayed in the activity monitor. Is there any tool which identify memory leaks?
    According to g_wolfman, the only process with a hugh difference between real and virtual memory is the kernel_task and the many Chrome Renderer processes. I have always 30 tabs open in chrome plus Safari (Flash disabled). I'm not able to terminate the kernel_task of course.
    Is there any way to isolate the troublesome process? There is no save start mode like in Microsoft Windows possible? This would be the first think I would do, checking if the problem persists in save mode.
    Disabled every start login objects btw.
    See in the image the amount of wired memory compared to the processes which are active. This is NOT the smart memory management OSX is capable of.

    Any suggestion? Is my system doomed to bleed to death every 3-4 days, until memory went 100% red (wired)? I would expect OS X to be smart enough to indicate memory leakers. I really do not get it.
    I migrated the same settings and applications to my freshly installed (10.7.4) 2007 Macbook. There the majority of RAM is active not wired.
    The only big difference is: On my 2011 Macbook Pro was VMWARE Fusion installed.

  • How to find Server location for Attachment in Oracle Apps?

    We are trying to find the location of an attachment that is stored in FND_ATTACHED_DOCUMENTS.
    We need to know the full location for the file.
    Please help.

    Pradeep Kalyan wrote:
    We are trying to find the location of an attachment that is stored in FND_ATTACHED_DOCUMENTS.
    We need to know the full location for the file.
    Please help.https://forums.oracle.com/forums/search.jspa?threadID=&q=Attachment+AND+Location&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_LOBS.FILE_NAME
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_LOBS&c_owner=APPLSYS&c_type=TABLE
    Thanks,
    Hussein

Maybe you are looking for

  • How do I create a recurring event for the second Monday of every month?

    I want to create a recurring event. It's an event that occurs the second and fourth monday of every month. I'd be happy to split this into two events if need be. The Custom repeat setting allows me to make the event occur every two Mondays. But some

  • Acrobat 9 Pro Crashes after upgrading to 10.6.7

    I used to be on 10.4.11 and then bought a new iMac with 10.6.7. Acrobat now crashes on me in very random situations. See the crash report below: Process:         AdobeAcrobat [2569] Path:            /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro

  • Show detail rowcount  in master

    Hello, i´ve got a mister-detail link between to tables. In my application there is a a Window for the masterinformation and a button to open the detailtable. now i want to show number of detailrows in the masterwindow. aku

  • My TV is only in Spanish, how do I get programming in English

    My TV is only in Spanish, how do I get programming in English????!!!!!!!!!!!! This is ridiculous. And how do I get a real life person to

  • Any Photographers out there? Looking for "Mac" workflow!

    I am looking to see if there are any photographers out there that would like to share their workflow. Like Download, to Aperture, to iphoto, to storage Do you keep your photos in folders or Aperture? How do you keep the copyright in the EXIF data but