concurrent users in oracle applications

How to find the no. of concurrent users in an oracle applications

Kind regards

Hafiz

Hafiz says:
How to find the no. of concurrent users in an oracle applications

Kind regards

Hafiz

Please see the old subjects to the scripts/docs get the list of users connected - https://forums.oracle.com/forums/search.jspa?threadID=&q=users+AND+Connected&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • user pid Oracle applications

    Hello

    How can I find the PID (process oracle user) of a user of oracle applications active other than the user moniter screen.

    Concerning

    Hi s/n,.

    You can refer to the following ML doc,

    [Script: how to identify the user apps using the PID of the o/s for form users in 11i | https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=185762.1]

    Thank you
    Anchorage :)

  • Number of users of Oracle Application Server

    Hello
    How to set the value of number of Oracle Application Server users.

    Hello
    Yes, the httpd.conf file will help there, location ORACLE_HOME/Apache/Apache/conf
    its better to make a backup of the original file and then make specific changes
    There are various settings in the file httpd.conf as follows

    Timeout: the number of seconds before receives and sends time out.

    KeepAlive: whether persistent connections (more than one request per connection). "Off" position to turn off.

    MaxKeepAliveRequests: the maximum number of queries during a persistent connection. Set to 0 to allow unlimited. We recommend that you leave this number high, for maximum performance.

    for example: MaxKeepAliveRequests 100

    KeepAliveTimeout: Number of seconds to wait for the next request from the
    same client on the same connection.

    For more information about the httpd.conf file, see the link below
    http://livenudefrogs.com/~Anubis/Apache/httpd-conf.shtml

    Concerning
    Fabian

  • How to limit users in oracle applications

    Hello

    I want to restrict users in the oracle applications without using the database
    can someone contact me please how resttrict users by using average level

    Thank you
    Gita

    Hello Gita,

    Please see (11i - R12 - how to lock E-Business Suite users and allow specific users [605538.1 ID]).

    Thank you
    Hussein

  • Want to send a public message to all users of oracle applications everything pending until

    Dear
    For the oracle apps & db maintenance activities, I would like to send public message, for example "Application will be unavailable for 30 minutes from now. This message should pop up on the user's session. How can I achieve this?

    Help me!

    Naya,

    It's under "$INST_TOP/apps //portail ' in my 12.0.4 directory instance.

    Kind regards
    Hussein

  • Users of Oracle applications

    Where exactly the use of the GUEST user comes?
    What is the difference in the use of the users APPS APPLSYS, GUEST, APPLSYSPUB?

    Published by: user12007281 on November 30, 2010 04:54

    Hello
    Tell me if you need more information.
    or
    close the thread with responded.
    Thank you

  • definition of expiration of password for all users of oracle R12 applications

    Hi,.

    I have OS RHEL 5, Oracle apps: 12.1.1
    now, I want to put the expiration of the password for all users in the oracle applications 60 days...


    can some Guide please how it could be done.


    It is urgent, your help is appreciated.

    Kind regards
    Milan ROUGIER

    Try this:

    Log in as applications

    SQL > update fnd_user set PASSWORD_LIFESPAN_DAYS = 60;

    SQL > commit;

    Thank you
    Muneer.
    http://muneer2908.WordPress.com

  • Impact on the change of user name on Oracle applications

    Hello friends

    An active user on the Oracle applications that a lot of financial and HR responsibilities request to change his USER name in the Oracle applications.
    Please notify its implications and how can safely do us this.

    Concerning
    Kamlesh

    Hello

    You can change the username without no problem safely (if there is no restriction by changing the user name, Oracle would not make this feature available). All references to the application are made through the USER_ID and not the username.

    Thank you
    Hussein

  • How to remove the oracle application user?

    Hi experts,


    How can I make user oracle application? I know only two options to lock and abandon backend as removing ro in fnd_users

    What is recommecnde? Please give the right way. "

    Thanks and greetings '
    VD

    Hello

    It's not a bug, user application records can be referenced in the databases/applications and their deletion would cause referential integrity problems.

    Kind regards
    Hussein

  • capture the data of Internet users access to oracle application server

    How to capture the details (for example, user, date & time of session id, ip address, etc) of all users (in home, vpn access, etc.) to access the oracle application server.

    Hello

    If you use $ORACLE_HOME/webcache/newspapers you can view access logs because all traffic passes through...

    concerning

  • Updates instead of inserts by using getNavigatableRowIterator () .createRow (); Concurrent users?

    Hello

    Summary

    My application only occasionally an update on an existing line, rather than create a new line.  Seems to occur when several people create new lines.

    Details

    My application creates a new line by making a PopupFetchListener create a record.  The popup gets 3 user input fields.  By clicking on OK validates the data.  But sometimes the app by mistake updates an existing line with 3 field entries, rather than create a new line.

    We call cela error "crush."  We believe that this occurs when 2 or more users create lines at the same time (but we're not sure).  Behind the pop-up window, we see the ADF table with the lines.  He opens a line and creates a new record with the key field with the value "-1".  It is the default value that we give to the view object.  If three users create a new line, sometimes two of the user see the-1.  The other user does not see a new slot open.  Instead, the focus is always on a line that exists.  This poor third user gets error crush.  We can only reproduce this problem sometimes.  Any ideas?  Here are more details.

    Setting the primary key of the Entity object

    < attribute name = 'AiId' IsNotNull = "true" ColumnName = "AI_ID', SQLType = 'DIGITAL' Type ="java.lang.Integer"

    ColumnType = 'NUMBER', TableName = 'GA_AIM"PrimaryKey ="true", DefaultValue ="-1"RetrievedOnInsert ="true ".

    RetrievedOnUpdate = "true" IsUpdateable = "while_insert" >

    < DesignTime >

    < name Attr = "_diagramName" Value = "Id" / >

    < / DesignTime >

    Properties of <>

    < SchemaBasedProperties >

    < value DISPLAYWIDTH = "60" / >

    < ResId LABEL = 'model. Entity.GaAim.AiId_LABEL"/ >

    < / SchemaBasedProperties >

    < / properties >

    < / attribute >

    Database trigger

    The Insert Before, gets a sequence counter and replaces the value "-1".

    Code FetchPopupListener

    DCBindingContainer bindings1 = (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();

    DCIteratorBinding dcib = (DCIteratorBinding) bindings1.get (iteratorName);

    RowSetIterator iter = dcib.getRowSetIterator ();

    NewRow row = dcib.getNavigatableRowIterator () .createRow ();

    newRow.setNewRowState (Row.STATUS_INITIALIZED);

    Code of the button 'OK '.

    BindingContainer links = getBindings();

    operationBinding oracle.binding.OperationBinding = bindings.getOperationBinding ("Commit");

    Object result = operationBinding.execute ();

    Environment

    JDev Studio Edition Version 11.1.2.4.0

    WebLogic 10.3.5 on Linux

    ADF BC

    Also tried

    Unchecking 'Required' attribute AiId Pavilion in the E.O. and hide the - 1 as a default value.  It is under the theory that the middle tier strives to ensure the uniqueness of the primary key, and two concurrent users had '-1 '.  It has not solved the problem.

    Your assumption that you get this problem if multiple users create new tires is correct. The problem is that you have defined the pharmacokinetics of new line - 1 for each line. This will get you in trouble.

    You must either use the DBSequence as type for your pk (http://docs.oracle.com/middleware/1212/adf/ADFFD/bcentities.htm#ADFFD19777), or you must assign the pk directly when the line is created (for example using groovy https://tompeez.wordpress.com/2011/09/02/using-groovy-expression-to-set-a-primary-key-with-a-sequence-number/).

    Timo

  • Tests with concurrent users on HTTP Web load

    Hello

    I'm trying my PHP Web Application load testing.

    I record (with Firefox) and developed the test with OpenScript script,.
    but I found that I could only test with function "Iteration".

    Is it possible to do load tests with concurrent users (connection of users at the same time multi) defined in the database?

    Thanks for help.

    Hello

    You need to load the script in BTA (Oracle Load Testing) you can download it from here , you have the first link Oracle Application Testing Suite and run the OATSxxx.exe to install the BTA.

    Concerning

    Alex

  • Recomendations for autonomous apex or glassfish server for 10 concurrent users thousands

    Hi all

    We are a medium enterprize with 15 thousand users.

    We intend to develop a mobile application using apex.

    I think that apex performs a dedicated connection to the database like oracle forms. so if 10 thousand users open mobile applications, this means that 10 thousand users are connected to the database at the same time.

    Am I wrong?

    If so, then let it be stand-alone mode would be able to serve in this case?

    How much RAM we required for such a charge?

    I would like to ask a question at a time, but these questions are a little research related to me, that's why I post in a thread.

    Thank you.

    Kind regards.

    Hi Maahjoor,

    We are a medium enterprize with 15 thousand users.

    We intend to develop a mobile application using apex.

    I think that apex performs a dedicated connection to the database like oracle forms. so if 10 thousand users open mobile applications, this means that 10 thousand users are connected to the database at the same time.

    Am I wrong?

    No, the session of the APEX is a dedicated connection to the database. Session of the APEX is independent of Session data, for each new request a database connection is created and abandoned when finished.

    If so, then let it be stand-alone mode would be able to serve in this case?

    What standalone mode are you talking about? Oracle remains Data Services (formerly APEX Listener) as a web server in standalone mode?

    If Yes, then it is not recommended to Oracle:

    Reference: running in stand-alone Mode that says:

    "Stand-alone mode is suitable only for development purposes and is not supported for use in production deployments. Use a taken J2EE application server supported for production deployments.

    You should always go for ADR deployed to one of the recommended Java EE application server. (Oracle Weblogic Server/Oracle Glassfish Server/Apache Tomcat)

    How much RAM we required for such a charge?

    The answer to this question is arbitrary. It is not only the RAM you should be concerned. It is on what architecture (hardware and software), you must go.

    This Article in Oracle Magazine by Mike Hichwa will help you: Browser-Based: Sizing Up Performance

    I hope this helps!

    Kind regards

    Kiran

  • connection to the oracle application express using java and jdbc

    Hello!

    I am trying to build a java application using jbcd to connect to my Oracle Application Express DB but unable to connect actually using the following syntax:

    Private final static String DB = "myworkspacename";

    Private final static String RUTA public = "@apex.oracle.com:1521";

    private public static final String URL = "jdbc: Slim:" + RUTA + "/" + DB;

    private static final String DRIVER = "oracle.jdbc.OracleDriver";

    a USER private final static string = " " [email protected] "; "

    private final static String PASS = "MonMotpasse";

    and then I start the connection via:

    CONEX = DriverManager.getConnection(URL,USER,PASS);

    but finally I get the following error:

    IO error: the network adapter could not establish the connection

    any ideas on what goes wrong will be appreciated...

    Simple answer... YOU can't connect externally to the hosted instance of Oracle with a jdbc connection or sql developer/Toad.  Not allowed...

    If you need this capability, I would suggest downloading of Oracle 11 g XE and building you own database...

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • How to warn the user that the application is about to disconnect automatically?

    If a user leaves his workstation unattended for a certain period of time, the Apex application disconnects automatically from the server.  The user is not warned about this and if they attempt to save some data on the current page, they don't realize that their data was not recorded until they click on the "Save" button.  At this point, the values of page element empty out and they realize that their data has not been saved.  It is the current page allows many lines to affix and the user can waste a lot of time entering data which will fall into the compartment bits.

    Is it possible to make my Apex application notify the user that the application has been automatically disconnected?

    Better yet, the user can be notified that the app is about to disconnect and the opportunity to extend their session?

    Thank you!

    Kim

    What APEX version do you use?

    The following link, Although unsupported by Oracle, contains a plug-in (I used) for the expiration times of session allowing notifications customized (about to cut etc..).

    http://www.apex-plugin.com/Oracle-Apex-plugins/dynamic-action-plugin/skillbuilders-session-timeout_188.html

    Keep in mind, it's good for APEX 4.0...

Maybe you are looking for

  • Updated to the latest Firefox, but cannot load multiple tabs

    I've just updated to the latest version, and although there is a button for this, I can't open the second or subsequent tabs. Anyone has any ideas on this subject. I'm running a PC in Windows 8 and tried to reload Firefox and restart the PC. Thanks i

  • Update iOS 9.2 does not

    My son upgraded his phone to iOS 9.2 and now it has a screen with just iTunes and the presentation of the form.  He tried to restart the phone and nothing.  Any suggestions on what we need to do to get the phone working again?

  • Max of each channel enter a new channel

    I'm doing a script in 11 tiara which takes the maximum value of the first 50 channels and puts these 50 values in a new channel. I first tried the ChnPeakFind command, but it is creating too many new channels. So I resorted to the ChnPropValGet (Grou

  • Leak memory in cRIO running RT

    I am running RT 2009 on a compact chassis of RIO.  My very basic VI causes the RIO to restart, which seems to be linked to a leak memory.  I use system monitor and you can watch the use of memory on the chassis of RIO grow very slowly.  Attached is t

  • problem deleting e-mail addresses from the e-mail address book.

    I have two email addresses on my e-mail address book that I can't remove. I have remove & they come back. How can I remove the continuous?