OLE Provider response is slow

Hi, some one help me.
I have problem of response time under OLE provider and oracle 10g database when OLE provider program opens Excel for importing data from the Excel file.
I want to know how to check bottle neck point. Please some one let me know.

No code = no information = no chance of any assistance
What are you trying to achieve?
Why are you using OLE for this rather than something like Oracle's Heterogeneous Services (HS) so that you can treat the Excel spreadsheet as an external database?

Similar Messages

  • TP Yoga 15 - Windows: Keyboard response too slow after coming back from hibernation

    I've got the same issue as outlined in this thread for a Y50 - there seems to be a BIOS update to solve it, but what about TP Yoga 15? Quote:Simply put, In keyboard properties , the Repeat delay is default at maximum (eg, holding down a keyboard button and how fast it generates the key strokes). When the system is put in hiberanation, then turned on again to come back, the Repeat delay some how gets decreased to about 2/3 of what it originally is. https://forums.lenovo.com/t5/Lenovo-P-Y-and-Z-series/Re-Y50-Windows-8-Keyboard-response-too-slow-after-coming-back/td-p/1676309/page/1 

    hi guys,
    Can you please provide also these additional information:
    (this is to check if the issue is isolated to a certain model number)
    Model Number (eg. 59-xxxxxx): 
    Place of Purchase (eg. Amazon, Bestbuy, etc.): 
    In addition, the solution from this thread seems to be a good workaround (the app is for Win7 but may also work for Win8.1)
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • My computer than the original response is slow,how to do?

    My computer than the original response is slow,how to do.help

    Please post in your native language as your English makes no sense.

  • I am a new Apple user and had a visitor, with an iPad, at my house.  I noticed the response time slowed greatly.  I have a Linksys N router and wondered is I need an Apple router to allow the speed to be consistent.

    I am a new Apple user and had a visitor, with an iPad, at my house.  I noticed the response time slowed greatly.  I have a Linksys N router and wondered if I need an Apple router to allow the speed to be consistent.

    I am a new Apple user and had a visitor, with an iPad, at my house.  I noticed the response time slowed greatly.  I have a Linksys N router and wondered if I need an Apple router to allow the speed to be consistent.

  • Installing Oracle OLE provider?

    Dear All.
    Is there a simple installer (MSI package or exe) that directly installs the Oracle OLE provider on Windows Systems?
    I used the XEClient for 10g to do that but it installs too many things that I don't need, I only need my application to connect to Oracle database from another machine that doesn't have Oracle installed.
    When I installed the XEClient, my application works fine for both 10g and 11g on Windows 2003, but when I tried my application on Windows 2008 using the same provider. I get an error citing that the Provider may not be installed properly.
    I have searched the net and all I found directs me to install the Oracle Client which installs too much things, I am asking if there is a way to install only the required DLLs for the OLE DB provider without using the Oracle Universal Installer.
    Regards

    Thank you for your posting - The Member Feedback forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions cannot be answered. However we recommend that you post this thread to one of the "Windows" forums.
    The URL is: http://forums.oracle.com/forums/index.jsp?cat=44
    Thanks - The OTN team

  • Browser response time slow but Analyzer fast with same query

    Hi all,
    We have a very complex query (structures and cell formulas).  When I drill and filter on a specific characteristic the action takes anything between 7 and 15 minutes when using the browser. The same query in Analyzer performing the same drilling action takes less than 35 seconds.
    Our architecture is as follows:
    - Relevant cubes are indexed on BWA
    - WebDynPro for Java
    We can see that the BWA is hit for a short time then the CPU utilization is back to 0%.  When doing '&profiling=x' on the browser I can see that the most of the time is spent on 'Get result set' / 'Get provider result set' for the Java events and on the OLAP side most time is spent on the 'Get result set' event.
    Interestingly enough - when disabling myself as a user for BIA use (NO_BIA_USE) in my user profile I get the same response time on the browser.
    So, does anyone have an idea of what may be the cause of the slow response time when using the browser?
    Thanks
    Edited by: Cobus van Rooyen on May 10, 2010 8:49 PM

    Hi,
    The reason is most likely because of the event ID 3200 where data transfer takes place from OLAP to frontend browser.
    Record a RSTT trace for this and if you are able to see frequent calls to "Apply State XML" and "Get Result Set" then apply the SAP Note 1428850. Otherwise see which function module is causing an error.
    If trace runtime is less but in browser still it takes long time then this might be because of the compression of HTPP responses, which can be confirmed by observing the sent and received data volumns from the HTTP server requests/responses. For more information refer SAP Note 746666.
    Imran...

  • Encoder movement response too slow

    I have a USDigital QSB-D USB/serial encoder which uses a serial uart interface at 230.4 kb/s, 8 bits, no parity, 1stop bit.  The USDigital driver (USDQSB.dll) allows me to open/close and read/write to registers and provides get/set functions to set specific modes.  The driver provides StreamEncoderCount function which takes threshold and intervalRate parameters.  The threshold specifies count changes to trigger transmission and the intervalRate is time interval between transfers.  In the attached VI I am attempting to use the StreamEncoderStatus() function to wait for the encoder index pulse which indicates the encoder has passed zero counts.  When the index pulse is detected I would like to use the StreamEncoderCount function to retreive encoder counts as rapidly as possible.  I am setting the threshold to 0 so it will read the count even if it is not moving and intervalRate to 1 which should be sending count value at 1.9 msec intervals.  The for loop count ie 100 which should take 190 msec to read at 1.9 msec.  The for loop takes over 3 sec which means that the sample rate is over 30 msec instead of 1.9 msec. I am using a notification to notify another the other while loop which plots the results.  Everything works as intended except for the slow response of 30 msec per sample instead of 1.9 msec.
    John
    Attachments:
    QSBEncoder2.vi ‏72 KB

    I was not able to find your dll benchmark application to do that test but I am beyond that now.  I have found the correct function to read streamed serial input from the encoder which is the USDQSB.dll function: GetCountWithTimeStamp() which apparently just reads the streamed serial input and does not query the count register repeatedly.  The attached QSBEncoder3.vi uses that function and performance is as expected.
    I have rewritten the encoder application to use the VISA driver.  The encoder is automatically recognized as a serial device by VISA and assigned the instrument ID: ASRL3::INSTR.  The attached QSBEncoder4.vi attempts to access the encoder using VISA but I don't get any response from the encoder serial port.  Any ideas on what I am doing incorrectly?  I am able to access the encoder using the VISA interactive control but when using the LabView QSBEncoder4.vi application I don't see any input coming from the ASRL3::INSTR  device.
    John
    Attachments:
    QSBEncoder3.vi ‏71 KB
    QSBEncoder4.vi ‏80 KB

  • ORA-01019 using XE Client OLE Provider, sqlplus works

    Hello,
    we use Oracle Express Edition and the Oracle XE Client software.On the Client (Windows 2000) we are not able to connect via OLE DB in some case. We tested it by placing and test.udl File on the Windows Desktop and configured and tested the Provider in there. When we click the TestButton, ORA-01019 comes up.
    We tried the workaround, that is described in Metalink for the 10.1 Client (Setting the privileges on the Filesystem) but it doesn't work.
    Any idea?
    Frank

    We tried the workaround, that is described in
    Metalink for the 10.1 Client (Setting the privileges
    on the Filesystem) but it doesn't work.
    Any idea?Probably it's a workaround for normal Client not for XE Client which is based on Instant Client.

  • Response is slow

    I find the response time with Photoshop CC unbearable at times.  I have an extremely fast system but Photoshop responds like a turtle.  Anyone else have this issue?

    So far you have not provided a lot of relevant information (Performance Preferences, OS, hardware, …), please read these (in particular the section titled "Supply pertinent information for quicker answers"):
    http://forums.adobe.com/docs/DOC-2325
    http://helpx.adobe.com/photoshop/kb/optimize-performance-photoshop-cs4-cs5.html

  • Macbook Pro Boot time and general response time slow.

    I'm running 10.9 Mavericks.
    Yesterday as I was doing my every day activites I realized randomly my macbook pro began preforming extremely poorly.
    My problems:
    Boot time now takes 2-3 minutes.
    Applications take 2-3 minutes to open.
    Applications will say they're open sometimes but will not display.
    Applications will take several tries to quit.
    Applications, especially Safari, will randomly crash.
    Everything is slower and takes a while to do, even opening a simple folder will take a minute.
    The things I have tried:
    I ran a Hardware test and the results showed it is not a hardware problem.
    I have reset the SMC and PRAM and the problems still occur.
    I have Verified and repaired the Disk/Permissions, however it seems to stop mid-way through (after about an hour).
    I can't seem to figure out what's wrong with it. I can re-install the OS but with my internet it is estimated to take 8 hours.
    Any suggestions?

    Your disk may be failing.  Do not attempt to resintall the OS until your disk is healthy.
    Backup your data immediately:
    Before proceeding you should make sure you have a current backup.  If it has been getting slower over time your disk could be a failing slowly.  SATA drives have two retry modes: short and long.  They can continue operating as read errors are increasing.  The long retry cycle is very long and can cause significant performance degradation.  If it has started long retries then it is likely to get worse and eventually fail.  SSDs also have a failure mode where the fail slowly.
    Time Machine Basics: http://support.apple.com/kb/ht1427
    Most commonly used backup methods: 
    https://discussions.apple.com/docs/DOC-3045
    Methodology to protect your data.  Backups vs. Archives.  Long-term data protection:
    https://discussions.apple.com/docs/DOC-6031
    Make a Genius Bar reservation http://www.apple.com/retail/geniusbar/ .
    or find an Apple Authorized Service Provider https://locate.apple.com/country
    If it is a failing disk, consider an upgrade to a 1 TB, 7200 RPM disk. Check out a one terabyte HGST 7K1000 7200 rpm, SATA III drive from OWC or consider an SSD.

  • DNS server responses extremely slow

    I set up the DNS Server running on my LAN (authoritative for a fully-owned domain), and I do believe it's correctly set up - reverse mapping works fine, no error messages in the logs or while watching tcpdump, etc. It's behind my NAT/Firewall, is set to be recursive (but I have not tweaked it to make it recursive only for the subnet). My problem is with the performance. Using this internal DNS server to provide DNS for my client machines on the LAN, internet lookups are awfully slow - perhaps five to ten seconds to bring up a major site. Leaving everything else the same on a client machine, and removing the references to the internal DNS server - thus using my ISP's DNS servers outside my LAN - the same site can by fully up in one second.
    Is this major lag in performance simply caused by the fact that the ISP's DNS server is so often caching many many more sites than I could ever request from my own LAN? Or should I be looking for something specific to hunt down perfformance problems?

    If your server is stand-alone, you can run without internal DNS.
    If OD Master, you also can run without internal DNS but config of course needs to be correct. Many people say it's best to run with internal DNS, but it's not a requirement.
    One reason to run internal DNS..
    If you connect to your server by fqdn (host.domain.com).
    Without internal DNS, the client will connect to the public IP (wan side of your router). If your router supports loopback, this will work- if it doesn't support loopback it won't work. Even if it does work, you are forcing your client-server traffic to be processed (NAT) by the router, incredibly inneficient (although a simple config for basic requirements). If you're moving big files with AFP, you don't want all traffic to go from client-router(NAT)-server-router(NAT)client. You can get around this by connecting using .local or IP addresses. So this all depends on your config, requirements, habits of the users, etc.
    JJ

  • Who provides response object?

    Hi All,
    I wanted to know who exactly provides the implememntation of an response object?
    i.e. if response is an object who defines how the class of response look like?
    I searched the servlet API and Tomcat source code but no where I see something called a response class.
    Regards
    Ayusman

    I think we can get the source for Tomcat on apache site.
    And I am looking at the source code itself, if I am not mistaken.
    I hope I was looking at the
    apache-tomcat-5.5.12-src\jakarta-servletapi-5\jsr154\src\share\javax\servlet
    folder.
    Is that right the one you are speaking about or some other jar files?
    Regards
    Ayusman

  • Application response too slow- How to resolve (webLogic)

    Hi All, Can you please let me know what are all the main areas that i need to concentrate in the weblogic application server if i get the complaint from the clients saying "application performance is too slow".
    Edited by: user11361691 on Apr 21, 2010 12:18 AM

    you need to check the following:
    1: Check the server log files to find any errors at the time when the Client is complaining about the server performance.
    2: You can enable the GC logs in the server log and can check whether the there is any issues with the memory usage of the server. From the GC logs you can that whether the time has been taken to to the GC and hence you can try allocating higher memory or you can try changing the GC algorithm according to the analysis.
    For details refer the following link:
    http://download.oracle.com/docs/cd/E13222_01/wls/docs100/perform/topten.html
    http://download.oracle.com/docs/cd/E13222_01/wls/docs100/perform/JVMTuning.html
    3: Finally you can collect the thread dumps snap shots and can see whether there are any stuck threads or deadlock situation in the server at the time of slow performance.

  • Premiere CC 2014.2 playhead response is slow even rendered in/out

    That's the whole issue. That came 2 days ago after one week holiday.
    Issue is not read speed issue, because my DISK is fastest QNAP RAID6 SYSTEM with 10gbit ethernet and ran very nice and smooth week ago.
    When I open project and touch first time playhead and sekking around timeline, it works fine until I let it go ones. After that everything play or rewinding response is abou 10 seconds.
    Regards
    Sami
    PS. I have tryed to clean and reinstall both Premiere and Media Encoder and updated my Nvidia Quadro K4000 display driver. I am tired of this...

    I'm on windows 7, and similar dynamic issues were a result of having two versions of the same app on the machine, and not associating the files to use the latest version, etc, or a version mismatch. 
    Another workaround is to close PPro and import the project into AME, rendering it from there.

  • Re: Y50 Windows 8 : Keyboard response too slow after coming back from hibernation

    I also have this problem.
    Lenovo Part #: 59421845
    Model: 20378
    Purchase from: Replacement/Exchange from Lenovo
    I wish I saw this thread before I did a factory restore. Ohh well, atleast its somewhat comforting to know I'm not the only one having this issue. I initially blamed the problem on my Razer Orochi 2013, but turns out that wasn't the issue.
    And I agree a proper fix is needed, wether is be some kind of BIOS or Driver update, but not some 3rd Party work around. For a $1,200+ laptop, this shouldn't be something that just get's swept under the carpet with a "temporary fix".
    Please keep us up to date on the status of this issue Lenovo.
    EDIT: Using this post as the first in the thread for escalation purposes - Amy_Lenovo

    When I put the Y50 to sleep or hibernate and then wake it, the keyboard refresh rate defaults to incredibly slow speeds.  So when I hit and hold backspace, it only removes 3 characters a second as opposed to 15-20 per second like I desire.  The only solutions are to reoboot or go into keyboard settings in the control panel and save the settings again.  The settings don't actually change, so just opening the settings and hitting apply is good enough to fix it.  This is obviosuly a software bug and others on online forums are experiencing the same issue.  If anybody else is experiencing this bug, please post here so Lenovo might take action to correct it faster.  Lenovo, if you're listening, please offer us a solution.
    Moderator Note; subject edited; post merged in

Maybe you are looking for

  • Output file name format

    Hi All, How can i configure output file name to the desired format generated in target directory in communication channel configuration in conf scenario. ex: i want to generate the file in the below format.. YYYYMMDD_<Receiver>.TXT Thanks and Regards

  • SQL Server 2014 Express, missing Data Type

    My problem is a simple one. When I create a new column and give it a Data Type, my options do not inlcude the "time" type. I found the documentation about available data types, and time is listed as one for SQL 2014. My desire is to have a data type

  • Looking for a new phone...

    So my phone was stolen and i'm looking to replace it. I don't care for flip phones and i've fallen in love with the touch phones and smart phones, but there is no way i'm going to pay for a data plan when i won't ever use it and if i did, very rarely

  • Since May 9th 2012, youtube video download in Safari doesn't work

    Anyone else found that downloading music and video files in Safari by right clicking the file in the activity pane in Safari now doesn't work? The downloader add-ons in Firefox still fine...

  • IDOC Interface Error

    Hi Experts, I am getting the same error: and from the forums I came to know that we need to use the IDOC name in the Interface mapping. I used the modified IDOC structure(External Definition) in mapping, but when I select the original interface in In