Having too many idle sessions?

Hi,
We have too many idle sessions at the database end? How can it be controlled apart from using database resource manager? Since some users execute long operations? Please clarify.
Thank you,
Adith

Having 5 of 60 sessions active is entirely reasonable. A session is ACTIVE only if, in that particular instant, the session is actively running a SQL statement. The vast majority of the time, a database connection will be idle as it waits for a user to decide what to do next, for the client application to process the data that was returned, etc.
If you're not encountering any problems, I wouldn't change anything. Setting IDLE_TIME in a profile will kill connections after a period of time, but that may cause problems for users & applications which are not designed to expect that their database connection can be terminated while they were using it.
Justin

Similar Messages

  • VISACOM - Alloc Error using 488.2 USB-B Interface - too many open sessions

    I have been having the following issue in my VB .NET RF-ATE application.... It usually happens when my program enters a measurement loop (I.E. searching for P1dB). It begins to solve for P1dB and performs about 15 cycles (sets power level on SigGen and takes SpecAn meas) and then crashes due to the following error :
    As Logged in the Event Viewer :
    VISA: May 13 09:45:22: Error=bfff003c,"VI_ERROR_ALLOC: Insufficient system resources/memory": ViTable::add - too many open sessions
    As Logged in VB .NET :
    An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in RFATE.exe
    Additional information: HRESULT = 8004003c
    VI_ERROR_ALLOC
    Not sure why its happening my code is pretty solid (or so I thought) and I believe it closes the VISA session properly after each R/W operation? (See attached). I call the same procedure to talk to the GPIB instruments over and over.
    Is it possible that I am not freeing and disposing of resources properly? I have read a little about destructors in .NET etc. but I was under the impression that as soon as "Sub End" is executed that the resources were free'd up? But that doesn't explain why I would get a "too many open sessions" error occour if I am closing the session after I am finished?
    Another odd thing to note is that I have created testplan scripts and loaded them into my application with literally hundreds of measurement commands and my program didn't crash then???
    I am very new to VB and .NET (3 months) so I have a lot to learn but I can't understand why this is occouring. Any help is appreciated.
    Attachments:
    GPIB.txt ‏3 KB

    Just posting a followup... Turns out I found a way to make it work! (I have been fighting this for almost 3 days!).
    If you look at the variable declarations of my procedure.....
    Sub GPIB(ByVal Addr As Object, ByRef Data As Object, ByVal IO As String)
    Dim ioMgr As Ivi.Visa.Interop.ResourceManager
    Dim instrument As Ivi.Visa.Interop.FormattedIO488
    Dim session As Ivi.Visa.Interop.IMessage
    I use the "IMessage" interface for the variable session.
    Just before the "Sub End" is executed I use the following line to close the session :
    session.Close
    Which it would appear doesn't close the session properly when you use the "IMessage" interface.
    So I changed the line to use the "IVisaSession" interface instead :
    Dim session As Ivi.Visa.Interop.IVisaSession
    Now when the Close method is executed aparently it closes the session properly because my program isn't crashing at all!
    I was using VISA COM 3.0 Reference object (GlobMgr.dll).
    If anyone has any insight on this please do share.

  • I received a message about having too many contacts?  Not sure what this means, didn't know there limitations on contacts.  Can you tell me about fixing this problem?

    I received a message about having too many contacts?  Not sure what this means, didn't know there limitations on contacts.  Can you tell me about fixing this problem?

    What were you doing when you received the message?
    I have seen reports on these forums where there is a limit to how many contacts you can have in the "to" field of a text message. That is the only thing I can think of where someone has reported getting a warning about too many contacts.

  • Too many OBIEE sessions

    Hi all,
    When I start BIP report from OBIEE 11.1.1.6 about 20 new sessions are created. The number of sessions stays the same with execution of subsequent BIP reports, but still it is considerable overhead for the BI Server. Is it a designed behaviour? Or is there a way to control the number of sessions?
    Kind regards,
    Marcin

    Check this document:
    NI Vision Error Codes
    Pharaphrasing it: "There are too many OCR sessions open. You must close a session before you can open another one."
    Check the Vision Palette and search for some VI that closes your session.
    If you don't mind, could you post your VI? I can't help you by applying the correct block because I don't have Vision in my suite. But I'm sure you will get some help.
    Best Regards
    Mondoni

  • Does having too many apps (like more than 100) affect the iPod Touch 5g's battery

    So with today being the App Store's 5 year anniversary, there are a LOT of top notch apps becoming free, which I have wanted.
    However this worries me - can having too many apps downloaded affect my iPod Touch 5g's performance & battery life?
    Extra Details:
    iPod Touch 5g 32gb, just got it two days ago.
    iI already have over 70 apps

    I say they will only adversely effect performance and battery life if the apps do things when the apps are completely shut down. By shutdown I mean the app are not in the recently used row when yo double click the Homne button. By doing something I mean that sme apps are always checking for things like when you get a notification.

  • Scalability Issues - Too Many Active Sessions?

    Hello,
    I'm having an issue with an application I built for one of the campuses at the college I work at. The application is a queuing system where there are stations for students to check in, admin stations where staff can see these students and "call" them, and displays outside each employees office that shows the student that was called. There are about 20 of these last type of display panels. I have the following code in my page footer to poll the DB for the most recent called student for a specific room:
    <script type="text/javascript">
    <!--
    var refresh_region = function( workstation_in, div_in ) {
        $.get(
            'wwv_flow.show',
            {"p_request"      : 'APPLICATION_PROCESS=F_NEXT_STUDENT',
             "p_flow_id"      : $v('pFlowId'),      //app id
             "p_flow_step_id" : $v('pFlowStepId'),  //page id
             "p_instance"     : $v('pInstance'),    //session id
             "x01"            : workstation_in
            function(data) {
                $(div_in).html(data);
        setTimeout(function() { refresh_region( workstation_in, div_in ) }, 5000);
    refresh_region( '&P7_WORKSTATION_IN.', '#next_student_div' );
    //-->
    </script>The OnDemand process, F_NEXT_STUDENT runs the following query and returns the result:
    select a.FIRST_NAME || ' ' || a.LAST_NAME
    into   full_name
    from   ONESTOP_QUEUE a
    where  a.WORKSTATION_ID_CALLED = in_workstation_id
    and    a.STATUS = 'CALLED'
    and    a.QUEUE_ID = (
       select min( c.QUEUE_ID )
       from   ONESTOP_QUEUE c
       where  c.WORKSTATION_ID_CALLED = in_workstation_id
    and    c.STATUS = 'CALLED');However, when all of these display panels are turned on (and I use code like this in other pages for similar purposes) the application becomes sluggish and eventually unresponsive. At first we had the application running off a box with Oracle XE. We eventually migrated to a full blown 11g install with APEX Listener and GlassFish. My DBA says everything looks ok on the DB side so I've been trying to dig in other areas to see where the bottleneck may be. After inspecting the Active Sessions report in APEX, I saw that there's a ton of connections being generated (> 30,000). This doesn't seem like a good thing to me and I'm trying to figure out what I'm doing wrong.
    At first I was using $.post() instead of $.()get. I was also using setInterval() instead of a setTimeout() loop. However, none of these changes seemed to really help the situation much. I'm at a loss for how else to improve the performance of this application. Any suggestions on what I can try?
    Most of the app's functionality is on apex.oracle.com
    WORKSPACE: SCCC_TEST
    USER/PASS: TEST/test
    Direct URL to the page (I pass in the worksation ID): http://apex.oracle.com/pls/apex/f?p=65890:7:0::::P7_WORKSTATION_IN:ADMISSIONS_1
    Thanks in advance for any help.

    Hi Patrick,
    UPDATE as of 3PM Eastern:
    This afternoon all users lost the ability to connect to the application. My DBA is still reviewing logs but it seems that the error isn't on the DB side. The application came back up after he restarted the Apex listener. We found a bunch of the following error in the Glassfish server.log file:
    [#|2013-02-25T14:34:39.021-0500|WARNING|oracle-glassfish3.1.2|com.sun.grizzly.config.GrizzlyServiceListener|_ThreadID=11;_ThreadName=Thread-2;|GRIZZLY0023: Interrupting idle Thread: http-thread-pool-80(73).|#]The max threads is currently set to 100.
    After we came back up I went to page 4350:45 and cleared out all sessions. After a couple minutes I rechecked the number of sessions on this page:
    Total Sessions: 27,674
    Distinct Users over all sessions = 2
    Sessions older than 15 minute(s) = 4Seems like way too many sessions to have after just a couple minutes.
    End UPDATE
    Again, thank you for taking the time to reply. Everything seems to be working fine for the past couple days, but I figured I'd provide some current data, especially since I'm still curious about all these "sessions".
    Are we talking about page 4350:45 which shows the following information
    Total Sessions: 9
    Distinct Users over all sessions = 4
    Sessions older than 1 day(s) = 0
    Where does it show 17,400 sessions for you? It almost appears that your daily APEX jobs are not running which do normally purge old APEX sessions automatically. See http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35129/dbms_jobs001.htm
    Yes, this was the page I was referring to. I just checked it now and it showed me the following:
    Total Sessions: 10,236
    Distinct Users over all sessions = 2
    Sessions older than 1 day(s) = 0And it does appear that the APEX jobs are running since there are no sessions older than 1 day... unless I'm interpreting this information incorrectly.
    Also, I was able to get some more data regarding page loading using the Debug info:
    14763     7751818952614     nobody     101     7     show     46     4 seconds ago     0.0000
    14760     7751818952614     nobody     101     7     show     46     9 seconds ago     0.5300
    14757     7751818952614     nobody     101     7     show     46     14 seconds ago     0.0150
    14754     7751818952614     nobody     101     7     show     46     19 seconds ago     0.0160
    14751     7751818952614     nobody     101     7     show     46     24 seconds ago     0.0160
    14748     7751818952614     nobody     101     7     show     46     29 seconds ago     0.0160
    14745     7751818952614     nobody     101     7     show     46     34 seconds ago     0.0160
    14742     7751818952614     nobody     101     7     show     46     39 seconds ago     0.0160
    14739     7751818952614     nobody     101     7     show     46     44 seconds ago     0.0160
    14736     7751818952614     nobody     101     7     show     46     49 seconds ago     0.0160
    14733     7751818952614     nobody     101     7     show     46     54 seconds ago     0.0160
    14730     7751818952614     nobody     101     7     show     46     59 seconds ago     0.0000
    14727     7751818952614     nobody     101     7     show     46     64 seconds ago     0.0160
    14724     7751818952614     nobody     101     7     show     46     69 seconds ago     0.0160
    14721     7751818952614     nobody     101     7     show     46     74 seconds ago     0.0160
    14718     7751818952614     nobody     101     7     show     46     79 seconds ago     0.0160
    14715     7751818952614     nobody     101     7     show     46     84 seconds ago     0.0150
    14712     7751818952614     nobody     101     7     show     46     89 seconds ago     0.5300
    14709     7751818952614     nobody     101     7     show     46     94 seconds ago     0.0000
    14706     7751818952614     nobody     101     7     show     46     99 seconds ago     0.0150
    14703     7751818952614     nobody     101     7     show     46     104 seconds ago     0.0150
    14700     7751818952614     nobody     101     7     show     46     109 seconds ago     0.0150
    14697     7751818952614     nobody     101     7     show     46     114 seconds ago     0.0150
    14694     7751818952614     nobody     101     7     show     46     119 seconds ago     0.0160
    14691     7751818952614     nobody     101     7     show     46     2 minutes ago     0.5310
    14688     7751818952614     nobody     101     7     show     46     2 minutes ago     0.5300
    14685     7751818952614     nobody     101     7     show     46     2 minutes ago     0.5150
    14682     7751818952614     nobody     101     7     show     46     2 minutes ago     0.5300
    14679     7751818952614     nobody     101     7     show     46     2 minutes ago     0.5300
    14676     7751818952614     nobody     101     7     show     46     2 minutes ago     0.5300
    14673     7751818952614     nobody     101     7     show     46     3 minutes ago     0.0000
    14670     7751818952614     nobody     101     7     show     46     3 minutes ago     0.5930
    14667     7751818952614     nobody     101     7     show     46     3 minutes ago     0.5300
    14664     7751818952614     nobody     101     7     show     46     3 minutes ago     0.5460So I'm seeing a page load time of ~0.016 or ~0.53. When I click on the details for one of the longer page view, I get the following:
    0.00000     0.00000     S H O W: application="101" page="7" workspace="" request="APPLICATION_PROCESS=F_NEXT_STUDENT" session="7751818952614"     4
    0.00000     0.04700     Reset NLS settings     4
    0.04700     0.03100     alter session set NLS_LANGUAGE="AMERICAN"     4
    0.07800     0.03100     alter session set NLS_TERRITORY="AMERICA"     4
    0.10900     0.01600     alter session set NLS_CALENDAR="GREGORIAN"     4
    0.12500     0.03100     alter session set NLS_SORT="BINARY"     4
    0.15600     0.00000     alter session set NLS_COMP="BINARY"     4
    0.15600     0.00000     ...NLS: Set Decimal separator="."     4
    0.15600     0.00000     ...NLS: Set NLS Group separator=","     4
    0.15600     0.00000     ...NLS: Set g_nls_date_format="DD-MON-RR"     4
    0.15600     0.00000     ...NLS: Set g_nls_timestamp_format="DD-MON-RR HH.MI.SSXFF AM"     4
    0.15600     0.03100     ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"     4
    0.18700     0.00000     NLS of database and client differs, characterset conversion needed     4
    0.18700     0.01600     ...Setting session time_zone to -05:00     4
    0.20300     0.03100     Reset NLS settings     4
    0.23400     0.03100     alter session set NLS_LANGUAGE="AMERICAN"     4
    0.26500     0.01600     alter session set NLS_TERRITORY="AMERICA"     4
    0.28100     0.03100     alter session set NLS_CALENDAR="GREGORIAN"     4
    0.31200     0.03100     alter session set NLS_SORT="BINARY"     4
    0.34300     0.00000     alter session set NLS_COMP="BINARY"     4
    0.34300     0.00000     ...NLS: Set Decimal separator="."     4
    0.34300     0.00000     ...NLS: Set NLS Group separator=","     4
    0.34300     0.00000     ...NLS: Set g_nls_date_format="DD-MON-RR"     4
    0.34300     0.00000     ...NLS: Set g_nls_timestamp_format="DD-MON-RR HH.MI.SSXFF AM"     4
    0.34300     0.01600     ...NLS: Set g_nls_timestamp_tz_format="DD-MON-RR HH.MI.SSXFF AM TZR"     4
    0.35900     0.03100     ...Setting session time_zone to -05:00     4
    0.39000     0.03100     Setting NLS_DATE_FORMAT to application date format: DD-MON-YYYY HH:MIPM     4
    0.42100     0.01600     Setting NLS_TIMESTAMP_FORMAT to application timestamp format: DD-MON-YYYY HH:MIPM     4
    0.43700     0.03100     Setting NLS_TIMESTAMP_TZ_FORMAT to application timestamp time zone format: DD-MON-YYYY HH:MIPM     4
    0.46800     0.00000     ...NLS: Set g_nls_date_format="DD-MON-YYYY HH:MIPM"     4
    0.46800     0.00000     ...NLS: Set g_nls_timestamp_format="DD-MON-YYYY HH:MIPM"     4
    0.46800     0.00000     ...NLS: Set g_nls_timestamp_tz_format="DD-MON-YYYY HH:MIPM"     4
    0.46800     0.00000     NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en     4
    0.46800     0.00000     Application 101, Authentication: PLUGIN, Page Template: 61331314513900454147     4
    0.46800     0.00000     Authentication check: No Authentication (NATIVE_DAD)     4
    0.46800     0.00000     ...fetch session state from database     4
    0.46800     0.01600     fetch items (exact)     4
    0.48400     0.00000     ... sentry+verification success     4
    0.48400     0.00000     ...Session ID 7751818952614 can be used     4
    0.48400     0.01500     ...Application session: 7751818952614, user=nobody     4
    0.49900     0.03100     ...Setting session time_zone to -05:00     4
    0.53000     0.00000     Session: Fetch session header information     4
    0.53000     0.00000     Run APPLICATION_PROCESS= request     4
    0.53000     0.00000     ...Execute Statement: begin sys.htp.p( F_NEXT_STUDENT( in_workstation_id => apex_application.g_x01 ) ); end;     4
    0.53000     0.00000     Stop APEX Engine detected     4
    0.53000     -     Final commit     4Again, not sure if I'm reading this correctly but it seems that the steps that are taking the most time seem to be related to NLS settings... and I have translating turned off. This is consistent with all of the longer page views. As a side note, my DBA did turn archive log mode back on this weekend.
    Again, everything seems to be running smoothly at the moment so the above data is more to help satisfy my curiosity about the inner workings of Apex.
    Regards,
    Tadeusz
    Edited by: tdsacilowski on Feb 25, 2013 3:04 PM

  • Too many loopback session id's in SMGW transaction (ABAP+JAVA System)

    Hi All,
    From SMGW transaction I am able to see too many loopback (127.0.01) session ids existing in the system.
    107 system(s) logged on *** showing from this more than 50 session are loopback. I am not able to find the reason.
    How to check and how to reduce this session.
    Thanks in advance

    Hi Maurício
    Thank you for your support.
    As per note I have checked in my system and I can not find relavent things
    from SM04 I am able to see only 12 users logged into the system ( *** 12 users logged on with 15 modes *** 
    ) and from 12 users 5 of users using GUI and remaing RFC. From SMGW it is showing only 8 active connection and
    SMGW --? Goto -->logged on clients  from here able to 98 systems logged on ( *** 97 system(s) logged on ***  ) in this around 70 logons related to loopback (127.0.0.1)
    Please suggest me how to anaylze this issue and how to take corrective steps for this kind of issue.

  • Portal creates too many database sessions. fix doesn't work!!

    Oracle Database 9i, Application Server 9iAS,
    Operating System SUSE Linux 7.2
    CPU - Athlon 1400
    Ram - 1GB
    There is a modification for the http server that aims to eliminate a problem on unix that causes the database to create too many sessions. The script can be found at
    http://portalstudio.oracle.com/servlet/page?_pageid=1787&_dad=ops&_schema=OPSTUDIO
    However the script fails to work. The http server is on port 80 with the redirect on port 7778. However going to http://myhost/pls/ results in a server error - connection refused. Is it possible that there may be an error in the script.
    Thanks in anticipation

    ok so my sound is ok now I can check that off of the list... I just looked around and found some external USB speakers that work just right. My built in computer speakers are just not the best quality.
    As for the microphone, I still haven't been able to find out what is causing it to not work. I notice that it isn't actually broken since if I make a really loud noise right next to the input it will register a little but only a little bit.
    $ arecord -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    sysdefault:CARD=Intel
    HDA Intel, ALC269 Analog
    Default Audio Device
    front:CARD=Intel,DEV=0
    HDA Intel, ALC269 Analog
    Front speakers
    surround40:CARD=Intel,DEV=0
    HDA Intel, ALC269 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Intel,DEV=0
    HDA Intel, ALC269 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Intel,DEV=0
    HDA Intel, ALC269 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Intel,DEV=0
    HDA Intel, ALC269 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Intel,DEV=0
    HDA Intel, ALC269 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    $
    here is some additional information about my sound. Also, when I open alsamixer, I find that when I go to "select sound card"(F6) I see default and HDA Intel. If the default is pulseaudio, then is it possible that pulseaudio is causing the problem?

  • Too many loopback session id's in SMGW transaction

    Hi All,
    From SMGW transaction I am able to see too many loopback (127.0.01) session ids existing in the system.
    107 system(s) logged on ***   showing from this more than 50 session are loopback. I am not able to find the reason.
    How to check and how to reduce this session.
    Thanks in advance

    Dear Pravin,
    Are you referring to 'Active Connections' or 'Logged on clients'. Which is the kernel patch level that you are running?
    Best Regards,
    Tim

  • Aggregates having too many partitions

    I have come across a situation where the aggregrates has too many partitions and I cant correct this with RSRV checks.
    This is the error message in RSRV.
    "E table of aggregate 100157 has too many partitions"
    There are many errors of this kind. How can I resolve this issue.
    Appreciate your help..

    <b>Some Insights-</b>
    Take some time to go through it..
    Numerous questions on this note made it necessary to talk a bit about E tables here as well since E facttables may also be partitioned. But they are only allowed to be partitioned by the time characteristics 0FISCPER and 0CALMONTH and only once they are activated. Any attempts to switch on partitioning after the activation has taken place and the cube has data (regardless whether in F or E table) is not supported at all. You have to do that by creating a second cube, partition that one and then load it from the first via an export datasource.
    or
    RE-PARTITIONING is the soln
    http://help.sap.com/saphelp_nw04s/helpdata/en/b9/60c041a2236a24e10000000a1550b0/frameset.htm
    The final tool for these E table partition related question will be delivered with the next release of BW as part of Netweaver 2004s. There will be a repartitioning tool allowing you to dynamically (well, you still shouldn't do this every day;-) change the partitioning range of a cube. And it will allow you to switch cubes to be partitioned which were unpartitiond before without going through the reload scenario that is necessary in BW 3.X (where X = 0, 1 or 5).
    Since that tool is based on major rewrites of existing as well as creation of new functionality, it can not be downported to BW 3.X
    Note 590370 - Too many uncompressed request
    Hope it Helps
    Chetan
    @CP...

  • Does having too many project effect FCPX performance?

    I have 100 - 150 projects
    Selecting a project takes about 5 - 10 seconds
    Dragging into folder takes a similar time
    Does having that number of projects effect the performance?
    When loading up, it reads all project names and checks links (I think)
    So I'm guessing there HAS to be some sort of performance hit?
    Thanks
    Omar

    james, thanks for the reply
    currently i'm working off the hard drive on my macbook pro
    the 'events' what are these? are they simply pointers to where the media is stored?
    similar with 'projects' - assuming there are a few more parameters stored for specific settings?
    apart from rendering files, these files all should be light weight?
    i read that link u gave. i'm now going to move events and project folders as mentioned
    Event Manager X: is it worth getting?
    i read the reviews. it doesnt say whether or not u can specify where the files are hidden to - lets say you want to keep on the current drive - or maybe move to an external drive
    some reviews have complained about the lack of response from buyers - doesnt sound too good
    EDIT: i've moved events and projects. i closed fcpx and then started again. the event and project names are still there 
    what am i doing wrong?
    EDIT: lets say i move events called abc. let's say i have a projects folder called xyz which used media in abc. i move xyz this as well
    12 months, i need abc and xyz - but i've forgetton how they are connected and i have 100's of project files and events i have taken offline
    what happens then?
    thanks

  • Can having too many emails stored in Mail cause problems?

    I've got over 3,800 emails in my inbox and I sometimes have problems with Mail not starting. My mail is stored in iCloud (so I can access them across all my Apple devices) but I also have a lot of old emails just stored on my Mac.
    Should I just archive old important emails on my Mac as well as deleting unwanted emails? Will that improve the performance of Mail? Would having a lot of old emails just stored on my Mac affect the performance of Mail on my Mac?
    Thanks.

    process limit
    bcm@bcm-laptop:~$ ulimit -a
    core file size          (blocks, -c) 0
    data seg size           (kbytes, -d) unlimited
    scheduling priority             (-e) 20
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 16382
    max locked memory       (kbytes, -l) 64
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 1024
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    real-time priority              (-r) 0
    stack size              (kbytes, -s) 8192
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) unlimited
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited

  • How to improve performance of rendering page having too many html controls

    I am really not sure whether this is coorrect forum I have choosen but because I m using XSL to create html part I have choosen this.
    Question is: I want to show/display around 3450 input fields(textBoxes) and 650 buttons(which have some functionality to do).
    These no's are not always fix but keep on changing depending on days in month.So I have written logic to create these textBoxes and Buttons in loop in the xsl using same html tags we always use..
    Because of so many html components it takes 1 to 1.5 min to display page so this has marked as performance issue. So is there any way by which I can show this page within secords?Thanks in adv.

    we have to show all at a time as ir is business conditionThen live with it and/or report back that it's a stupid requirement.
    The larger the generated output is, the more time it needs to be transferred completely over network. That's nothing more than obvious. You can at highest upgrade the network speed and/or reduce the output size by trimming whitespace and/or using GZIP. Maybe ajaxical techniques in data loading will help, but it won't reduce the total loading time, it will only improve the user experience.

  • Will having too many apps slow down ur iphone4

    just like the topic says, will it slow the phone down? or drain the battery faster?

    Having apps shouldn't affect anything.
    Using apps will obviously use battery, as will using the phone, the ipod,etc.

  • Does having too many apps cause the constant freezing?

    Hi!
    I deleted a number of apps and the freezing doesn't seem as bad.
    Would the apps also apply to having the iPod turn itself off?

    Never mind...
    Before replacing my iPod Touch, I was told that it was most likely the cause.
    *Ignore this topic*

Maybe you are looking for

  • How to poke USB IDs to kernel driver

    Hi, I have an FTDI USB to RS232 converter, but it is not detected and the driver is not loaded because the vendor uses his own vendor and device ID's. I wonder if it possible to poke the ID's to the kernel driver so that the converter is detected. My

  • Database Import command untility. Any improved in 5.1?

    ldif2db in 4.16 is painful to use. If I just want to input 1000 entries that is just part of user directory tree, I have to export the user directory tree and put in that 1000 entries, then export nsroot and the other sys configuration root. After th

  • Foreach tag

    hello, I use a foreach tag to browse a map, but some ">" are add betwen two items. I would like to know why... here is my code: <c:forEach var="map" items ="${dependency.versions}">           <c:set scope="session" var="project" value="${map.key}" />

  • Can I password protect a HD partition?

    I have a 500gb HD, half for TimeMachine and half for private folders. Can I password that whole private partition?

  • Problem persisting after finding

    Hi everybody sorry about my english i have an issue that if driving me mad I'm making an GUI to manage cities i got a jtable that shows all the cities that the user may update and a jbutton that initialize all field to insert a new one If i click on