User_id on simultaneous session

Dear all brothers.

I use this function "* fnd_profile.» ' VALUE ('USER_ID') * ' to insert the user_id that has made the process of competing in one table, but a single ID is inserted in the table however I send simultaneously to several people.

Any help please

Thank you

He cannoy happen if present you the program of several users, the program must meet different IDS.

I used fnd_profile.value ('User_ID') and it works quite well.

Tags: Oracle Applications

Similar Questions

  • Outputs audio multiple simultaneous sessions in windows 7

    I've seen several questions about activation output audio at the same time multiple in windows vista and 7, as example SPDIF and analog output, answer every time, it's that this is not supported by windows 7. Why is this? Why isn't there it worked fine under XP, support could you guys give some details, why is not supported more?

    Virtual Audio Cable - solved my problem

  • WebLogic Web Server concurrent session of the monitor

    Hello

    I use 5.8 Hyperic to monitor Weblogic Server web user simultaneous sessions up to certain level and then if it reaches a threshold to trigger a workflow vCO. Up to now, I understand that Hyperic is not able to control the user's session.

    I wanted to know if this is possible, how can it be done.

    Need your help!

    Thank you

    BR,

    MG

    Hello

    "Active current sessions' supposed to be under WebApp Service.

  • Simultaneous OWD by user

    Hello

    Is it possible to have several simultaneous sessions of Oracle Web determination by user?

    Probably not as OWD directly lie OPA of a unique HttpSession session context.

    Workaround solutions?

    Thank you

    Roger

    Roger,

    Yes, OWD use the HTTPSession to bind the user with their session.

    Users can have several Session open at the same time, but have a different browser for each session window.

    See you soon
    Frank

  • Q: number concurrent sessions by hours in a specified interval

    Hello

    I have this table that contains the SESSIONID, CREATEDATE, LASTCHECKDATE, EXPIREDATE PARTNERID

    We make a query that returns the number of max session competitor hours time for the specified interval.

    For example, last week, on a per hour basis or bases the top competitor for each hour or day session day, according to the report.

    can make the number of new session every hour with this request;

    SELECT TO_CHAR (createdate, ' DD/MM/YYYY HH24') | ' h ' value of start_time, COUNT (SESSIONID) new_sessions name, | ' {' | partnerid |} '}' as a partner
    To uws
    WHERE expiredate IS NOT NULL
    and partnerid = 25
    and TO_CHAR(createdate,'YYYY/MM') = ' 2010/05 '
    TO_CHAR Group (createdate, ' DD/MM/YYYY HH24') | ' h ', name | ' {' | partnerid |} '}'
    ORDER BY 1 DESC;

    I think I should use MAX (count (sessionid)) and probably some DECODE when c1 between createdate and lastcheckdate...

    This aspect will have to run it on sqlplus from a script shell if possible and same graph on Google maps.

    The help is appreciated, please note that I'm not an expert of the Oracle...

    Published by: user11954725 on July 19, 2010 17:55

    Hello

    user11954725 wrote:
    Thanks Frank,.

    I think we are very close to the solution, I'm looking for now.

    Here's the script you gave me (with few changes) and exit;

    WITH all_hrs AS
    (
    SELECT min_hr + ((LEVEL-1) / 24) AS the period
    , min_hr + (LEVEL / 24) AS next_period
    DE)
    SELECT TRUNC (MIN (createdate), 'HH') AS min_hr
    , TRUNC (MAX (LASTHEARTBEATDATE), 'HH') AS max_hr

    You may have noticed that this site normally compresses white space. When you post the text formatted (including the code or output) on this site, type the 6 characters:

    \

    (small letters only, inside curly brackets) before and after each formatted section, to preserve the spacing.
    
    
    

    produce output;

    Period SESSIONS
    ------------------------- ----------------------
    19-APR-10 15
    19-APR-10 12
    19-APR-10 15
    ...
    12-MAY-10 28
    569 rows selected

    This is very confusing for several reasons:
    (a) it's not formatted.  Use \
    

    tags, as mentioned above.
    (b) you're not showing all the significant data. If you're GROUPing BY a date, TRUNCated to the hour, then the hour is significant, and you should show the hour, not just the year, month and day. Use the TO_CHAR function to include the hour in the display for this column, or ALTER SESSSION SET NLS_DATE_FORMAT ... to change the default display for all DATEs.
    (c) There's much too much output, even with parts of it cut out. Devise some smaller sample that shows the problem.

    Now the output seem to produce the concurrent sessions as needed but the date range show is not exactly.
    I expect the output to display only for the range specified in parameter, which if for this example only one day.

    The in-line view in all_hours generates min_hr and max_hr.
    If you want min_hr to be parameters that are not derived from data in your table, then you can select them from dual.
    That is, instead of:

     ...     FROM     (
                    SELECT  TRUNC (MIN (createdate),    'HH')     AS min_hr
                    ,     TRUNC (MAX (LASTHEARTBEATDATE), 'HH')     AS max_hr
                    FROM     userwebsession
           where createdate <= TO_DATE('07-MAY-2010 00.00.00','DD-MON-RR HH24.MI.SS')
             and LASTHEARTBEATDATE >= TO_DATE('07-MAY-2010 23.59.59','DD-MON-RR HH24.MI.SS')
               )
    

    You can tell

    ...      FROM     (
                    SELECT  TO_DATE ( '07-May-2010 00'
                             , 'DD-Mon-YYYY HH24'
                             )               AS min_hr
                    ,       TO_DATE ( '07-May-2010 23'
                                   , 'DD-Mon-YYYY HH24'
                             )               AS max_hr
                    FROM     dual
               )
    

    Probably, if we ask a few more days, we would like to display the MAX number of simultaneous session for a day and (optional) average also for that day and that all the days of the period.

    So, for example, based on the output above that level next report would be output as follows (for the period from 19 April 10 to 27 April 10;

    19 APRIL 10 24
    20 APRIL 10 14
    21 APRIL 10 26...

    Yes, it is possible. You can have a single query which truncates dates either at the time or day, and instead of

    ...      CONNECT BY     LEVEL <= 1 + (24 * (max_hr - min_hr)
    

    use something like

    ...      CONNECT BY     LEVEL <= 1 + (periods_per_day * (max_hr - min_hr)
    

    where periods_per_day is 24 or 1, to generate the exact number of lines of output you want.
    Give a specific example if you want to help. D.F.
    "Thanks to this data to sample...
    I would like to pass these parameters:...
    and get this result:...
    but, with the same data, if I pass these parameters:...
    so I want this output:... »
    Once more, there not need a lot of data. Maybe 10 rows, dated between 22:00 one day and 03:00 on the following day, would give a good example of the hourly production so that every day.

    user11954725 wrote:
    I am now looking to do an export of the table for you to test with real data.

    It would be better? expdmp? and download a zip to a site?

    Or if you are good for now with this small sample?

    Small data sets are the best. It is easier for you to post, easier for you to manually draw the expected results, easier for everyone to understand and verify.
    Display instructions INSERT.

    By looking at the output once again, if the TIME period would show in the output that would be great, so maybe I can use it as input to another query that could be summarized per day?

    Use the function TO_CHAR or ALTER SESSION SET NLS_DATE_FORMAT registration time at the exit of the DATEs.
    As I mentioned above, you have a query that produces either hourly output, like this

    period               sessions
    ----------------     --------
    07-May-2010 21:00      5
    07-May-2010 22:00      1
    07-May-2010 23:00      6
    

    or daily output, like this:

    period               sessions
    ----------------     --------
    07-May-2010            12
    

    According to a parameter.
    You might also have a query which produces two output types at the same time:

    period               sessions     daily_total
    ----------------     --------     -----------
    07-May-2010 21:00      5
    07-May-2010 22:00      1
    07-May-2010 23:00      6          12
    

    Give a clear example of what you want, and someone will help you get it.

    Published by: Frank Kulash, July 21, 2010 09:35

  • Setting user_id

    Hi all
    I am followed by users through the site and the first part works very well and defines and updates a hit counter. The problem is with setting user_id and custno. My table of clientinfo database has two number fields user_id and custno the rest are text. No asre AutoNumber fields. What should I set user_id for and custno in in the code so that it works. I put custno as 0 for stop errors in creating user cfquery but that gives me just a mistake later. What should I do? Thank you

    <!--> header.cfm included on all pages
    <! - identify user by cookie - >

    < isdefined ("Cookie.user_id") CFIF >
    < CFSET user_id = trim (Cookie.user_id) >
    < CFELSE >
    < CFSET user_id = "1" >
    < / CFIF >

    <!-page sponsor find out more: - >
    < CFSET cgi.remote_addr = address >
    < CFSET cgi.remote_host = host >
    < CFSET referer = cgi.http_referer >
    < CFSET cgi.http_user_agent = agent >
    < CFSET = cgi.script_name page >
    < CFIF NOT Len (host) >
    < CFSET = 'unknown' host >
    < / CFIF >
    < CFIF NOT LEN (referer) >
    < CFSET referer = "unknown" >
    < / CFIF >



    <! - display counter - >
    < cfquery name = "GetHits" datasource = 'mydatasource' >
    SELECT * from hit_counter
    < / cfquery >

    < CFIF GetHits.recordcount is 0 >
    < cfquery name = "CreateHit" datasource = 'mydatasource' >
    INSERT INTO hit_counter (hit_count)
    VALUES (1)
    < / cfquery >

    Hits: 1

    <!-mysql datasource < cfquery name = "newUser" datasource = username 'SecurityDB' = 'root' password = "" >-->

    < cfelse >
    Hits: < query CFOUTPUT = "GetHits" > #hit_count # < / cfoutput >
    < / cfif >

    < cfquery name = "updateHits" datasource = 'mydatasource' >
    UPDATE hit_counter SET hit_count = hit_count + 1
    < / cfquery >








    < CFIF not isdefined ("custno") >
    < isdefined ("session.custno") CFIF >
    < cfset custno = session.custno >
    < / cfif >
    < / cfif >


    <!-if the user has been here before, create no ID and cookie for them: - >
    < CFIF NOT LEN (user_id) >
    < CFQUERY NAME = "CreateUser" DATASOURCE = 'mydatasource' >
    Insert into ClientInfo (Id, RemoteAddress, RemoteHost, Referer, UserAgent, page, custno)
    values (#user_id # "#address #", "#host #", "#referer #", "#agent #", "#page #", 0)
    < / CFQUERY >


    < CFQUERY NAME = "Makecookie" DATASOURCE = 'mydatasource' >
    SELECT max (ID) as high of clientinfo
    < / CFQUERY >

    < CFOUTPUT QUERY = "Makecookie" >
    < CFSET high = cook >
    < CFSET user_id = high >
    < / CFOUTPUT >

    < CFCOOKIE NAME = "user_id" VALUE = "' #cook # ' EXPIRES ="never">"
    < CFELSE >





    <!-add existing follow-up: - > user registration

    < CFQUERY NAME = "TrackUser" DATASOURCE = 'mydatasource' >
    insert into ClientTrack (Id, RemoteAddress, RemoteHost, Referer, UserAgent, page, custno)
    values ("#user_id #", "#address #", "#host #", "#referer #", "#agent #", "#page #",)
    < isdefined ("custno") CFIF >
    "#custno #
    < cfelse >
    '0'
    (< / cfif >)
    < / CFQUERY >
    < / CFIF >


    <!-if variable custno in (e-mail for example) URL, save in the user database: - >
    < isdefined ("custno") CFIF >
    < CFQUERY NAME = "UpdateUser" DATASOURCE = 'mydatasource' >
    Update ClientInfo
    < isdefined ("custno") CFIF >
    Set custno = "#custno #",.
    < cfelse >
    Set custno = custno,
    < / cfif >
    WHERE ID = "#user_id #
    < / CFQUERY >
    < isdefined ("custno") CFIF >
    < cfset session.custno = custno >
    < / cfif >
    < cfelse >

    <!-if not, try to set the number of custno leave previous visit: - >
    < CFQUERY NAME = "GetUser" DATASOURCE = 'mydatasource' >
    SELECT custno, id
    OF ClientInfo
    WHERE ID = "#user_id #
    < / CFQUERY >

    <!-session variable set for use by other pages: - >
    < CFIF GetUser.custno is not "" > "".
    < cfset session.custno = GetUser.custno >
    < / cfif >
    < / cfif >

    Let me first of all ask a question here is just eating me so I can't sleep, eat, or breath. :)

    Are the CUSTNO and IDS of unique numbers? It seems to me that you have 2 keys when you only need 1.

    Now, why do you have session.custno and custno? Why not stick with just the session variable?

    Basically, you do a lot of things the hardway and I think it is confusing to you.

  • Click on the link-get "Windows cannot open the file" select a program?

    After clicking on link get "Windows cannot open this file" have to manually "selecta program programs installed" Firefox appears as a choice and I double-click. How can I solve this problem / eliminate these extra steps
    ? Thank you Joe
    I am running Windows XP, MS office Outlook 2007

    Is it a link in an e-mail message in Outlook? This problem arises from time to time.

    While Firefox can usually set himself as the proper application to open the URL, you click in other programs, settings are sometimes blur or do not take. This article has tips to solve this problem: setting Firefox as the default browser does not work - what to do. Anything there help?

    If the problem persists, is there something special about how you start Firefox? For example, you have this launch in a security 'sandbox' or virtual machine? You have all the command-line options set to allow several simultaneous sessions of Firefox, or call the Profile Manager? If none of this sounds familiar to you, the answer is probably not.

  • Techniques need more details 4250XL IPS and IPS-4255

    4250XL IDS launched before the IPS technology, am I right?

    Can I deploy a 4250XL ID as an IPS, if yes, then it's true to upgrade this version IDS 4.1 to IPS ver 5.0

    I add 4 10/100/1000BaseT ports on ID 4250XL.

    Because, I have to deploy IPS to 1 Gbps throughput.

    and I could not find an IPS in CISCO will produce 1 Gbit/s with 4-port 10/100/1000BaseT.

    How many simultaneous sessions support IPS 4200 series.

    How can I use feature Redundant Power Supply on IPS-4255.

    Technical documentation 42xx is linked off the coast of http://www.cisco.com/go/ips. I don't know if IPS 5.0 information is still (it's kinda new). There is no option RPS for the 4240/4255, but recommends the use of a UPS would be justified for packaging line if you have unreliable power.

    There is no provision for failover in the transducer (other than the bypass mode), but there are drawings (I hope bound off the page that I mentioned above) to do network active / standby designs.

    The 4240 and 4255 do not have redundant storage... they have no HDD due to reliability problems. They run a flash and ram disk configuration.

  • AnyConnect shared license Apex

    Hello!

    If I bought a license shared apex, let's say for 2500 users and provide on 4 different boxes ASA, now can I have 2500 vpn simultaneous session on each box or the number (2500) total will be shared by 4?

    Thank you

    Josh

    A total of 2500 of my understanding.

  • In the VPN 3000 concentrators network access problem

    Hello

    I created a group user ID, allowing simultaneously 3 session of this particular ID, when I am session VPN initating this particular ID, I can connect to a single session with any problem, and I can access the internal network. simulatneously trying another session from another machine using the same user ID, I get the ip address of the VPN server's internal network, but I can't ping internal LAN server and perform operations .only I get the IP address. But I'm nt problem in first session created, they problem arrive for the second session

    Are the next two sessions of the clients that are behind a NAT/firewall device? Try to create a second group ID and log in to the second client and the second. If you still have the problem is not a problem of "simultaneous session."

    If you see the problem either, and your customers are both behind the same NAT device, have your clients connect from different locations or enable NAT traversal.

  • license anyconnectvpn ciscoasa

    Hello

    I would like to configure the anyconnect vpn remote.

    Can you help me the version of the show, if it is supported or not?

    It is supported. But only two simultaneous session can use this remote vpn by sending by default. But you can contact cisco or the seller to increase per session licensing. from 10 as the lowest.

  • CSCue51351 - ASA NAT huge config causes traceback because of the unbalanced tree p3

    Hi experts ASA

    CSCue51351 - ASA NAT huge config causes traceback because of the unbalanced tree p3

    I want to know that how huge?

    Below, this Condition of DDT is SSP60.

    ----------------------

    Symptom:

    Version 9 8.4 (4) current ASA code can generate a traceback with thread name: DATAPATH-7-2315 and reload.

    Conditions:

    Seen on ASA5585-SSP-60 running in the failover environment.

    Workaround solution:

    None

    ----------------------

    SSP60 can perform up to 10 000 000 simultaneous sessions.

    It's more than 10 000 000 simultaneous sessions?

    Kind regards.

    Word

    Hello Word,

    This flaw does not affect the number of concurrent sessions.

    Instead, this fault comes to play if you have a large number of statements NAT or ACL (say 25 k +) which you change and at the same time the unit treats a large number of new connections per second (say 20 k +), what then is there the possibility of hitting this issue.

    Sincerely,

    David.

  • connection via Cisco ACS 5.0 limit

    Hi all

    My infrastrucer wireless a few days ago I deploy Cisco ACS 5.0 with Active directory integration. My wireless users are connecting through web authentication process. The authentication process is gone through AD & his works very well. But I want to work on my 5.0 ACS that a user cannot simultaneously connect several devices at a time.

    Hello Sabine,.

    'max sessions' featre introduced acs 5.3.

    Maximum user sessions

    For optimal performance, you can limit the number of concurrent users to access the network resources. ACS 5.3 imposes limits on the number of simultaneous sessions of service by the user.

    The limits are defined in several different ways. You can set limits to the user level or at the level of the group. Depending on the configurations of the user's maximum session, the session number is applied to the user.

    IMPORTANT: for maximum sessions work for access of the user, the administrator must configure RADIUS account management.

    You can go through the link listed for more information below:

    http://www.Cisco.com/en/us/docs/net_mgmt/cisco_secure_access_control_system/5.3/user/guide/access_policies.html#wp1176806

    The code that you're using now ACS 5.0 is not recommended for a production environment. You need to upgrade the ACS to achieve the functionality of session max.

    Jatin kone
    -Does the rate of useful messages-

  • change ssh port?

    I'm changing the port ssh on my cisco 850 (ios v12.4 (4) T4)

    I found the following instructions: http://www.cisco.com/en/US/products/ps6350/products_configuration_guide_chapter09186a00804831de.html#wp1020480

    but most I've read this, I think that just speaks of reverse ssh.

    I want to change the port on which the router is listening to ssh sessions. is this possible? should I just before a foreign port to the internal ip address on port 22?

    I have a router Cisco 800 Series running 12.3 (7) T7 and have managed to change my SSH port by using something similar to the information provided in the link that you referenced.

    I don't remember where I found the config info, but it's here:

    Router (config) # ip port ssh 2229 62 Rotary

    Router (config) # access - list 129 allow tcp 0.0.0.x x.x.x.x any eq 2229

    Router (config) # line vty 0 4

    Router (config-Line) # access - class 129 in

    The first line sets the SSH port to 2229 - choose any port that is not in conflict with something important

    The rotating group is arbitrary and is NOT related to a given line VTY number

    The access list prevents all ports to access the router - fill the mask subnet and generic appropriate

    That's all there is to it. I tried several simultaneous sessions using the same number of port without problem.

    The only thing to watch is AAA. If you follow the example of your link using the 'login authentication default' statement, you need to enable AAA using 'aaa new-model' and follow with an order specifying where passwords will be checked.

    This could be 'aaa authentication login default group Ganymede + local' If you use a GANYMEDE server + with a downturn in the local database on the router, or something as simple as "aaa authentication login default" local to use the local database on the router.

    Hope this helps!

    Please provide your comments so that I know if it worked for you.

    Thank you!

    VRS

  • PROJECT VPN - CISCO ASA

    Hi all

    We have a large ongoing project in which we implement a Firewall / VPN service to the customers to provide VPN connections back to a single VPN server. We have about 1,000 users but only run about 200-250 concurrent sessions at any time and the IP Sec and SSL will be fine. As part of our evaluation and the construction phase we need to firstly consider hardware and Cisco is an obviuos because we have the expertise in house. However, I consider that for this client, it would be preferable to provide a solution that will scale that their subscribers grow and therefore my opinion is the ASA 5510 would be a good starting point and we can improve if their subscriber base grows. There are also run active failover / standby. However, the licenceing issues are a little confussing to say the least and so would like a second opinion from someone on this forum which has some recent experience of a similar build and install. Hardware and software specifications for this build are important, so any suggestions in this regard would be also welcome. We considered all connect premium, but this can be expensive looking at 250 concurrent sessions. These are fundamental questions.

    1. what would be the best material to offer to this customer to get them started?

    2. with Anyconnect is the example from the sessions simultaneous or registered user accounts or in other words we would have 1,000 accounts of users with 250 concurrent connections?

    3. is there a better way to configure the VPN simultaneous 250 with about 1000 users?

    Any help would be as always greatly appreciated.

    Kind regards

    >> 1. What would be the best material to offer to this customer to get them started?

    The 5510 is a legacy that should not be bought and more like the first firewall. And the concurrent users are also too low. You should look into the 5525-X. This model supports VPN connections simultaneous 750. The next smallest model, the 5515-X only supports 250 simultaneous sessions.

    >> 2. With Anyconnect is the example from the sessions simultaneous or registered user accounts, or in other words we would have 1,000 accounts of users with 250 concurrent connections?

    Yes, concurrent sessions are what count.

    >> 3. Is there a better way to configure the VPN simultaneous 250 with about 1000 users?

    You must decide if you really need VPN without client. If your users could all use a complete tunnel (AnyConnect) client, then just buy the AnyConnect Essentials license which is pretty cheap.

    Sent by Cisco Support technique iPad App

Maybe you are looking for

  • Why iOS 10 requires a GB of 2.31 on iTunes download and live only 1.1 GB for iPhone?

    Hello eveyone, Does anyone know why the download for iOS 10 via iTunes takes a 2.31 GB download all live only 1.1 GB? Thanks in advance

  • I pad is in zoom mode

    The Air in my IPad is in zoom mode. I tried to double tap with 3 fingers without help. I tried to connect to Itunes and it showed my ipad but it wasn't showing my summary that was listed in the help topic. The resolution is too large. It doesn't let

  • Qosmio G10 - fan on after 5 min indefnitely.

    I plan to get rid of this machine if I can't do something about it. Having a fan to kick in a homogeneous heat when windows is idle before the machine seems upward and never turn off seems weird, I have to stay with my M60 who has no problem fan. The

  • Error signing in

    When I log in, it says there is a problem with signing in and I should go into the event log to find the problem but I don't know how to do this, and I can't achieve any of my documents because they do not, in addition, I tried to use my open office

  • I can't see my pictures using Windows 7 Premium. I get a message that I don't have permission to open it.

    Real user frustrated here.  I had no problem opening and viewing my photos until recently.  I don't know if this has nothing to do with the activation of my smart TV to access my pc and see these photos, but the timing seems too coincidental.  Now, w