Users Inactive V$session

hello to all.
i have a strange problem i have users which is currently working and they are active users so when i query and check the status
so its showing me Inactive.
here is an example:
STATUS     USERNAME     LAST_CALL_ET
INACTIVE     SYSMAN     9
ACTIVE     APPL_INS     0
INACTIVE     SYSMAN     273
INACTIVE     SYSMAN     126
INACTIVE     DBSNMP     20
INACTIVE     SYSMAN     2
INACTIVE     DBSNMP     325519
ACTIVE     DBSNMP     0
INACTIVE     SYSMAN     10
ACTIVE     SYSMAN     24and also i check the following thread but did not find the solution is this a bug?
any help would be greatly appreciated.
status inactive in v$session
M.

As soon as a session doesn't execute a SQL statement the status will become 'INACTIVE'.
That's everything that needs to be said about that.
As Oracle can't tell what a client is doing.
And, please: this is NOT a bug. Not even a feature. Just working as designed. PERIOD.
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • Getting Because of inactivity your session is no longer active error

    Hi All,
    I am getting error - "Because of inactivity you session is no longer active. Click Ok to reload the page" even if the session is active in my webcenter spaces application. This is happening when I am clicking on the navigation links multiple times. On navigation links I am opening external application as a popup. I have configured external applications in my webcenter spaces application and I have not set shared credentials or public credentials, so user has to provide the username and password. I have observed some of the patterns when it is occuring :
    1. If I have not set the username and password in Accounts -> Preference for external application and if I press cancel on the login form of external application multiple times (3-4 times)
    2. Sometimes it is happening even if I open the external links in the different window also
    I searched and found that there is a CLIENT_STATE_MAX_TOKENS parameter to save the client state for back button behaviour and if the request for any token comes to restore the state on pressing back button and that token is not present then it throws the above error. In webcenter this token is set by default to 3. I tried increasing this but it didn't help. In my case even I am not pressing back button then why it's coming ?
    I have observed one more thing that on pressing cancel button on adf external app login page closes the popup and page navigates back to the login page.
    I have a clustered environment. Is this problem related to clustering ?
    Thanks,
    Sachin
    Edited by: Sachin Saxena on Jun 4, 2012 1:07 AM

    Hi Sachin,
    We faced same issue in Spaces in two nodes cluster. Are Spaces and UCM on same box? If yes, then the reason of the issue is "JSESSIONID cookies name from Spaces and UCM clash with each other". Change the cookie name in Spaces from the weblogic.xml file.
    Regards,
    Imran

  • Discoverer Plus and the SSO GUIT (Global User Inactivity Timeout)

    Does Discoverer Plus obey the Global User Inactivity Timeout?
    We've enabled SSO for Discoverer Plus and Viewer (v. 9.0.4.45.02), and we've
    configured the Global User Inactivity Timeout. For testing, we set GUIT to 5 minutes.
    When we re-activate a Viewer session after more than 5 minutes of no activity,
    we're prompted for our SSO username/password, as expected.
    If we leave a Plus session inactive for more than 5 minutes, we are not prompted for our SSO username/password.
    If we leave a Plus session inactive for 30 minutes, a pop-up appears warning us
    that Plus will exit if we don't take some action. This pop-up is driven by the fact that we set Timeout to 30 minutes in the pref.txt file. Plus behaved this way before we enabled it for SSO.
    We thought that Plus and Viewer are both governed by GUIT in the SSO environment. Are we wrong about that?

    Yes, i am having the same problem with the Timeout. No matter what i have the timeout set to, the portal never redirects to the login, the users stay logged in indefinitely. We are running 10gAS (10.1.2). I have a feeling it has something to do with the cookie not being properly set. If ANYONE has any experience with this please reply. thanks so much
    Steve

  • Portal to timeout on User inactivity

    Dear All,
    I have already read many posts on portal timeouts to occur based on user inactivity. (that is for the portal to log off automatically when there is no mouse movement or KB activity say in 10 minutes.)
    Can you please give a step by step guide as to how to achive this? Earlier posts do not clearly specify how to achieve this properly.
    I am using SAP 2004S SP07.
    Any assistance is highly appreciated,
    Antony.

    Even I am on the same page and trying to figure out a way to logoff for user inactivity. we are using kiosks for ESS. so it is really needed.....
    I am following through the link <a href="http://help.sap.com/saphelp_nw04/helpdata/en/bd/6ca740aa053a13e10000000a155106/frameset.htm">Specifying HTTP Session Timeout</a>. This would work for me. But I can not locate the file web.xml on the server. Please advise if you had used this.
    Thanks in advance

  • Applet/Swing user inactivity detection

    Hello,
    I need some advise on the issue, of detecting user inactivity on my applet.
    My current scenario is, my applet is hosted from a jsp page on the client machine, the applet contains a lot swing components (many jframes).
    I want to somehow detect the user inactivity on that page hosting the applet.
    Say for example if the user doesnt perform any action (like a mouse click) on the main applet or any of the child jframes spawned from it, for say 15 mins. I want to close the applet and the jframe saying Session Timeout.
    Or other than this is there any way for applet to deal with session parameters to perform the timeouts, when no user activity takes place, on the JSP holding the applet.
    Hope i am clear enough in my scenario.
    Please advise.
    Thanks,

    >
    I need some advise on the issue, of detecting user inactivity on my applet. >Why are you deploying an applet, rather than a webstart based application? I ask this especially since...
    >
    My current scenario is, my applet is hosted from a jsp page on the client machine, the applet contains a lot swing components (many jframes). >The entire app. sounds as though it is more based around free floating JFrames anyway.
    I want to somehow detect the user inactivity on that page hosting the applet. Forget 'the page', since this can all be done within the applet or 'main GUI component' (should you decide to convert it to a JFrame).
    The basic way outlined by the other tqwo responders would be the way to approach it. You app. needs to
    a) Detect activity, and note the time.
    b) Keep a timer running to check if the lastActivityTime has reached the limit, then..
    c) Here we come to a bit of a tricky part... It is easy to detect 'activity' on a button or menu item that causes an event. You might put the code to handle the update of the timer into the event handler, but consider a JTextArea. An app. has a slew of buttons anf menu items, plus a number of JTextArea's for entering 'details'. Normally a JTextArea would not have an actionlistener, and would often not have any special handling on the KeyListener, so to avoid having to put a listener on every conceivable component that might hava 'activity', I suggest that at the end of the '15 minutes' you pop a modal JDialog itself with a 15 second 'you are about to be logged out' warning - and force the user to dismiss it in order not to be logged out.
    d) When the user is logged out, you might indicate that by either removing all the components and replacing them with a message, or simply disabling all controls but the 'x' button (or something along those lines).
    For the 'timer', there are a number of classes which might be used, from creating your own class that implements Runnable, through using a Swing based Timer to run the separate 'logout check' thread.

  • User Exceeded Max Sessions

    User trying to use DUN are getting the error msg of “User exceeded max session” going into ACS, I can’t find any info about and initial log for that day – never mind multiple ones. Max session is set to one in the group settings; I have 6 PRI AS5300, PIX 515 and a 3005 concentrator. ACS and radius were recently rebooted with no luck. Any help would be greatly appreciated.

    Is this ACS for Unix, if yes then please try setting the MaxSessions parameter to a higher value.
    MaxSessions parameter specifies the number of concurrent logins allowed, so if the user, or group is entitled to more sessions, change the user's or group's profile to allow more sessions.
    Thanks
    Raji

  • User to one session at a time in ACS 5.1

    Dear friends, I have installed the ACS 5.1 and linked to my WLC, and when I enter my Logeo I agree Signature: User and password whenever you want from different devices, I want to do is only allow a user to one session at a time , someone can guide me?
    I am using radius server
    thanks

    Hans, Steve:
    Good day.
    I can find the "Max-Login Ignore Identity Response" under Security -> Local EAP -> General.
    But I could not find the part that Steve talked about (concurrent login)!! Did you Steve meant ssh/telnet sessions?

  • Because of inactivity, your session has timed out, no longer active

    Dear Experts,
    I am running 64 bit Redhat 5.5.
    I've installed the Oracle DB, weblogic and OBIEE.
    cat /middleware/Oracle_BI1/bifoundation/version.txt
    Build: 11.1.1.5.0.BIFNDN_11.1.1.5.0_LINUX.X64_110427.0752
    Release Version: Oracle Business Intelligence 11.1.1.5.0
    Package: 110427.0955.000
    java weblogic.utils.Versions
    WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 ImplVersion: 10.3.5.0
    JDBC DMS ImplVersion: 11.2.0.2.0
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011 ImplVersion: 10.3.5.0
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu Feb 3 16:30:47 EST 2011 ImplVersion: 10.3.5.0
    java weblogic.version -verbose
    WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 ImplVersion: 10.3.5.0
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011 ImplVersion: 10.3.5.0
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu Feb 3 16:30:47 EST 2011 ImplVersion: 10.3.5.0
    Oracle Virtual Machine Manager Client implementation ImplVersion: 1.1.0.0
    I login to the server at:
    http://black.testrac.com:7003/
    and navigate to:
    Farm_bifoundation_domain          
    And I keep getting logged out, and the message:
    Weblogic/OBIEE:
    Because of inactivity, your session has timed out and is no longer active. Click OK to reload the page.
    What's aggravating, is that I can login, and immediately get the message!
    It is just me on this machine/environment.
    How can I configure the server so that:
    a: this does not happen at all, or
    b: the timeout happens only after 2 or 3 hours
    Thanks a lot!

    look for "emoms.properties" file
    For my env :
    /home/oracle/product/11g/user_projects/domains/base_domain/servers/AdminServer/tmp/_WL_user/em/hsz5x1/META-INF/emoms.properties
    oracle.sysman.eml.maxInactiveTime=< value >
    the VALUE is in MINUTES
    Restart Admin & SOA server.
    Thanks,
    Sandeep

  • "Accounting-Start" and "Accounting-Stop" with same "user name" and "session Id" recorded in different RADIUS servers.

    Hi,
    I have questions about "Accounting-Start" and "Accounting-Stop".
    1.If a NAS configured to have a primary and a backup RADIUS server. To start with all the “Accounting-Start” records will be in the primary RADIUS server. Later on the primary server goes down (Primary server won’t tell the NAS?). When sessions stop, the NAS sends the “Accounting-Stop” to the secondary. I understand the “Start-Stop” record with the same “user name” and “session-id” ideally should be recorded in the same server. If this situation happens what should both the NAS and RADIUS server do?
    2.A NAS configured to have a primary and backup RADIUS server. To start with all the “Accounting-Start” records will be in the primary RADIUS server. Later on the administrator decided to change the primary server (as there are problems with the previous primary). sessions stop, the NAS sends the “Accounting-Stop” to the new primary. This ends up the “Accounting-Start” and “Accounting-Stop” with the same “user name” and “session Id” in two RADIUS servers.
    To summarize, how to avoid the ”start-stop” pair ends up in different servers ? If it does, is it  an issue for RADIUS application ?
    Cheers,
    1.If a NAS configured to have a primary and a backup RADIUS server. To start with all the “Accounting-Start” records will be in the primary RADIUS server. Later on the primary server goes down (Primary server won’t tell the NAS?). When sessions stop, the NAS sends the “Accounting-Stop” to the secondary. I understand the “Start-Stop” record with the same “user name” and “session-id” ideally should be recorded in the same server. If this situation happens what should both the NAS and RADIUS server do?
    2.A NAS configured to have a primary and backup RADIUS server. To start with all the “Accounting-Start” records will be in the primary RADIUS server. Later on the administrator decided to change the primary server (as there are problems with the previous primary). sessions stop, the NAS sends the “Accounting-Stop” to the new primary. This ends up the “Accounting-Start” and “Accounting-Stop” with the same “user name” and “session Id” in two RADIUS servers.
    To summarize, how to avoid the ”start-stop” pair ends up in different servers ? If it does, is it  an issue for RADIUS application ?
    Cheers,

    vignesh and BalusC,
    following is the code in front controller's doFilter method. is this not thread safe?
            HttpServletRequest req = (HttpServletRequest) request;
            HttpServletResponse res = (HttpServletResponse) response;
            HttpSession session = req.getSession();
            somepackage.User user;
            if(session.getAttribute("user") == null){
                user = new somepackage.User();
                session.setAttribute("user", user);
            }else{           
                user = (somepackage.User) session.getAttribute("user");
            }user object maintains all information about a user. if it is in session scope, everything should work fine.
    another observation is after some time of usage, both people in different systems are getting same session.getId()
    in my logout page i am using
    session.invalidate();
    thanks,
    moses

  • Lots of Inactive perl sessions in Oracle 10g r2 on Debian Linux 64 bit

    Hi,
    There are lots of Inactive perl session in Oracle 10g release 2 10.2.0.3.0 on Debian Linux 64 bit, is it normal
    ps aux|grep oracle is showing following in processes of perl
    /home/u01/app/oracle/product/10.2.0/database1/perl/bin/perl /home/u01/app/oracle/product/10.2.0/database1 /sysman/admin/scripts/db/dbarchfull.pl

    Hi,
    There are lots of Inactive perl session in Oracle 10g release 2 10.2.0.3.0 on Debian Linux 64 bit, is it normal
    ps aux|grep oracle is showing following in processes of perl
    /home/u01/app/oracle/product/10.2.0/database1/perl/bin/perl /home/u01/app/oracle/product/10.2.0/database1 /sysman/admin/scripts/db/dbarchfull.pl

  • How to hide a record in table from users of different sessions ?

    Hi,
    I am having a table say 'EMPLOYEE' with 10 records in it and users X and Y.
    X fetched a row from his session, assume 5th record for perfoming update operation .
    Until X commits his transaction , this 5th record should not viewable to user Y evenwith
    "SELECT * FROM EMPLOYEE" statement .
    How it is possible with oracle ?
    Thanx in advance.
    Regards,
    Hariharan ST

    Look at this example please
    SQL> create user test1 identified by test1;
    User created.
    SQL> grant dba to test1;
    Grant succeeded.
    SQL> conn test1/test1
    Connected.
    SQL> create table test1_id (id number);
    Table created.
    SQL> begin
      2  for i in 1..5 loop
      3  insert into test1_id values(i);
      4  end loop;
      5  commit;
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> select * from test1_id;
            ID
             1
             2
             3
             4
             5
    SQL> disc
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> conn / as sysdba
    Connected.
    SQL> create user x identified by x;
    User created.
    SQL> grant dba to x;
    Grant succeeded.
    SQL> create user y identified by y;
    User created.
    SQL> grant dba to y;
    Grant succeeded.
    SQL> conn x/x
    Connected.
    SQL> update test1.test1_id set id=1;
    5 rows updated.
    SQL>
    And now connected by X user, from another session I'm connecting with Y user and issue:
    SQL> conn y/y
    Connected.
    SQL> select * from test1.test1_id;
            ID
             1
             2
             3
             4
             5
    SQL>- - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • Fetch From UWL to WD view :UWL Exception Logged in users context or session

    Hi,
    We have a requirement in which , we need to fetch all UWL Items and need to display these in a webdynpro view.
    We tried based on this link [Custom UWL|http://searchsap.techtarget.com/tip/0,289483,sid21_gci1240907,00.html].
    Coding What I have Tried is
           IWDClientUser user1 = WDClientUser.getLoggedInClientUser();
                IUser epUser1 =user1.getSAPUser();
                IPortalRuntimeResources runtimeResources = PortalRuntime.getRuntimeResources();
                wdComponentAPI.getMessageManager().reportSuccess("Version "+PortalRuntime.getVersion());
                IUWLService uwlService = (IUWLService) runtimeResources.getService(IUWLService.ALIAS_KEY);
                uwlService = (IUWLService) runtimeResources.getService(IUWLService.ALIAS_KEY);
                wdComponentAPI.getMessageManager().reportSuccess("6");
                UWLContext uwlContext = new UWLContext();
                uwlContext.setUser(epUser1);
                wdComponentAPI.getMessageManager().reportSuccess(" UML Context"+uwlContext.getUserId());     
                wdComponentAPI.getMessageManager().reportSuccess("9");
                IUWLSession uwlSess=uwlService.beginSession(uwlContext, 6000);
                uwlContext.setSession(uwlSess);
                wdComponentAPI.getMessageManager().reportSuccess(" UML Session"+uwlSess.getUser().getUniqueID());
                IUWLItemManager itemManager = uwlService.getItemManager(uwlContext);
                wdComponentAPI.getMessageManager().reportSuccess("Item manager"+itemManager.getItems(uwlContext,null,null));
                QueryResult result = itemManager.getItems(uwlContext,null,null);
                wdComponentAPI.getMessageManager().reportSuccess("12");
                int size = result.getTotalNumberOfItems();
                ItemCollection collection = result.getItems();
                java.util.List list = collection.list();
                Item item = null;
                Date date = null;
                String subject = null;
                for(int i = 0; i < 5; i++)
                if(!(i > (size -1)))
                item = collection.get(i);
                date = item.getDueDate();
                subject = item.getSubject();
                wdComponentAPI.getMessageManager().reportSuccess("item "+item);
                wdComponentAPI.getMessageManager().reportSuccess("date "+date);
                wdComponentAPI.getMessageManager().reportSuccess("subject "+subject);
    But I am getting the Exception
    Exp: com.sap.netweaver.bc.uwl.UWLException: Wed May 14 11:20:29 IST 2008 (Default) Logged in users context or session doesnt exist
    in the line
    QueryResult result = itemManager.getItems(uwlContext,null,null);
    But according to first mentioned link the user is getting through Portal Request Object. In webdynpro, we were not able to get Portal request object. So we  are getting the current user from UME .
    So we are getting the exception.
    Can anybody help me
    Thanks and Regards
    Smitha

    check this link
    Re: UWL breaks behind TAM

  • Automount SSHFS drive in user-level systemd session

    Hello,
    I'm able to automount a network drive through SSHFS using the following .mount unit in the system-level systemd session:
    [Unit]
    Description=adama shared drive
    [Mount]
    What=[email protected]:/home/shared
    Where=/home/koral/remote/adama
    Type=fuse.sshfs
    Options=_netdev,noauto,users,idmap=user,IdentityFile=/home/koral/.ssh/id_rsa,allow_other
    [Install]
    WantedBy=default.target
    As is, the network drive is mounted at system start-up and it is read/write-able by any user logged into the local system.
    I'd like the drive to be mounted only when my $USER logs-in and read/write-able only by my $USER, so I considered moving the .mount unit to my user-level systemd session, but now the automounting fails with an unhelpful error message:
    systemd[1969]: Mounting adama shared drive...
    systemd[1969]: home-koral-remote-adama.mount mount process exited, code=exited status=1
    systemd[1969]: Failed to mount adama shared drive.
    systemd[1969]: Unit home-koral-remote-adama.mount entered failed state
    I guess there is a permission issue somehow, could you please help figuring it out ?
    Note: I'm still using systemd-204 as the user-level session is kind of broken in later versions as described here.
    Kind regards.
    Last edited by koral (2014-03-30 17:54:45)

    xtian wrote:I can mount using the manual command `$sshfs [email protected]:/ /mnt/mrwizard.local`
    According to the above your username is xtian, which it isn't in your fstab entry:
    xtian wrote:[email protected]:/ /mnt/mrwizard.local ...
    So without having looked for further errors nor knowing anything about sshfs, I would suppose to change this.
    Sometimes simple spelling errors are actually the hardest to solve. – Like I always try to '#include <some_library.c>'.

  • User Inactivity

    Hello Guru's,
    Good morning. We are performing license measurement twice a year and perform user inactivity every quarter. To save time on user inactivity and to achieve accuracy, planning to have a new custom program developed. However, not sure if SAP has any plans to develop such a funactionality. We have CUA implemented in Solution manager (SAP EHP 1 for SAP Solution Manager 7.0, SAP basis component SAPKB70104).
    As part of user inactivity, we filter the inactive users from all servers and set thier valid to date to last login date and lock them. Due to recent support package implementation we have additional functionality in report "RSUSR200" in CUA master. Which ideally gives the inactive users from all systems. However, we need to evaluate the user's again on individual basis since it is not complete. That means if user is part of 5 systems and inactive in 1 system, the user is shown in the report as inactive.
    We have recently implemented another new functionality in CUA "RSUSR_SYSINFO_LICENSE". This report provides no of users based on the license category from selected systems.
    Now the question is, do you know if any new support packages has the functionality Or ever heard from SAP
    for performing user inactivity. That means, simply lock the user, set validity date to past or last login date if the user is inactive in all systems.
    It will also be good if you share on how are you performing this activity?
    Regards,
    Gowrinadh
    Edited by: Gowrinadh Challagundla on Apr 27, 2010 9:47 AM

    Hi Bernhard,
    Thanks for the reply. Let me explain in details about that.
    USER A is now a CRM user and before worked in ECC. The user is not using ECC any more, and only active in CRM. When I run this report, USER A is reported inactive in ECC. Which is right. However, I can't lock this user globally and set valid to date in past because the same user is active in CRM.
    Since I know User A is a CRM user, I can avoid locking this user. The same way I need to determine all the user's reported here. The functionaity I am looking here is "report should check in all systems and say whether user is inactive and all respective systems". If the user is active in any one of the system, it should not be shown.
    Hope it clarifies.
    Regards,
    Gowrinadh

  • Can a sprite become visible after a certain amount of user inactivity?

    Can a sprite become visible after a certain amount of user inactivity? like a timer triggering an event?

    Hi Kevin,
    You can look at the on timeOut event. (This is not to be confused with timeOut objects)
    There are a number of related properties, which date back from the early days of Director, and which seem to have been omitted from recent versions of the documentation, even though they still function. I give them here with their original names (prior to Director 10):
    the timeOutKeyDown
    the timeOutLapsed
    the timeOutLength
    the timeOutMouse
    the timeOutPlay
    the timeOutScript
    the lastClick
    the lastEvent
    the lastKey
    the lastRoll
    (You can also use the more recent DOM style for these last four properties: _player.lastXXX)
    Here's a very simple script which will make sprite 1 disappear when the movie starts, and reappear if the user does nothing for 5 seconds:
    on startMovie()
      sprite(1).visible = FALSE
      the timeOutLength = 300 -- = 5 seconds * 60 ticks / second
    end startMovie
    on timeOut()
      sprite(1).visible = TRUE
    end timeOut
    If you click the mouse at intervals of less than 5 seconds after starting the movie, then the sprite will remain invisible.
    NOTE: Using sprite(x).visible = FALSE will make the entire sprite channel invisible everywhere in the Score. It's better to use sprite(x).blend = 0, unless the sprite must not react to the mouse while it is invisble, in which case it is better to move it off-stage.
    Is this what you are looking for?
    James

Maybe you are looking for

  • Mic/Remote on headset doesn't work correctly with my iPhones iPod

    Currently I'm using a third party headset because my original apple headset broke.. Sometimes when I first plug in the headset it'll automatically start playing music, fast forward songs, skip tracks, and randomly stop and start again. I usually solv

  • IPad app update does not appear to work

    I have the new iPad with retina display and several days ago, I noticed that I keep getting bugged to update the app "CNBC Real-Time for iPad." When I accept the update, the app appears to update. However, when I click on the App Store, I am again bu

  • Lagging problem

    Hello everyone I just have a quick question. I made an application that displays an array of cards in a JFrame with three buttons under it. One button perfectly shuffles the deck(I won't get into what I mean by that unless someone is interested) the

  • Dead Line monitoring is not working

    Dear Friends , I have the belwo issue in my workflow .  Deadline monitoring is not working in my workfloow. Details of the Issue : -- I have a Dialogue step in my workflow , which sends workitems to the user . Once workitem has cometo the user's SAP

  • Selection tool has stopped working...

    I was making some edits on my project and when I placed a PNG that I had just edited, my selection tool stopped working. I can select a graphic, but as soon as I try to move it around on the page, nothing happens. As we all know, the selection tool i