Very slow first connection with Oracle.DataAccess 4.112.1.2

Hello, I'm having some troubles with connecting using Oracle DataAccess component. In particular, when using .Net 4 Framework, the first connection to the database takes about 20-25 seconds!
Here's my setup:
- Web server running 64-bit Windows Web Server 2008 SP2 with IIS 7.0
- Oracle server running 64-bit Windows Server Standard 2008 SP2 with Oracle 11g
The version of ODAC component is 2.112.1.2 / 4.112.1.2
The first strange thing is that, when I set an application on .NET 4 in IIS, I need to "Enable 32-bit Application" in order for it to work.
I made some tests with a very simple query: "SELECT 1 FROM dual" and here's the results:
- Classic ASP (ADODB.Connection): a fraction of a second to connect
- .NET 2 with System.Data.OracleClient: a fraction of a second to connect
- .NET 4 with Oracle.DataAccess: 20-25 seconds
Moreover, if I launch the first connection thru Classic ASP, then the .NET 4 connection is very fast, as it happen in any case from the second connection on...
This way, I excluded the problem is in the connection string, since it's always pretty much the same. I also excluded it could be a TNS problem, since they all use the same TNS (I think).
That's all I've come up with, and I'm not a big Oracle expert so I hope someone here can help me sorting the situation out!
Thanks,
Stefano

Thanks for your reply.
I already tried messing around with that parameter.
At the moment, it was set as:
SQLNET.AUTHENTICATION_SERVICES= (NONE)
I commented it and nothing changed.
Thanks anyway :)

Similar Messages

  • Slow first connection using Oracle 10g xe and Visual Studio 2008

    {noformat}
    Good day,
    I'm slightly unaccustomed to using forums, so bear with me.
    My initial connection to the Oracle database takes approximately 30 seconds. It seems to be waiting for a connection before timing out and trying another connection which works, as all subsequent connections work immediately. I'm unsure how other people's responses in forums can help me due to the plethora of configurations, so here's mine. My comprehension of the oracle world is still growing, you'll have to explain the terms you're using for me, Hoping you can help.
    I'm using Visual Studio 2008, set to use 32 bit debug mode, on a Windows 7 Pro platform. Also using Oracle 10g Xe, and have installed the 32 bit version of ODAC 11.2 (11.2.0.1) to aid making a connection from Visual Studio to Oracle.
    I have a database set up and a user with system admin rights. This is all local for a programming project and will never see the light of day outside of my personal machine.
    I am using code to connect, not the GUI. I wish to code this project completely without the aid of the GUI. so my connection string within Visual Studio C# is (pw/id hidden)...
    string xe = "Data Source=xe;User Id=xxxxx;Password=xxxxx;";
    OracleConnection conn = new OracleConnection(xe);
    My c:\devsuitehome\network\admin\sqlnet.ora file is this:
    # sqlnet.ora Network Configuration File: C:\DevSuiteHome\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT, ONAMES, HOSTNAME)
    And my c:\devsuitehome\network\admin\TNSNames.ora file is this:
    tnsnames.ora Network Configuration File: C:\DevSuiteHome\network\admin\tnsnames.ora
    Generated by Oracle configuration tools.
    XE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = xe)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <machine name)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
    Just for good measure, my tnsping xe shows:
    "Used paramter files:<br/>
    c:\devsuitehome\network\admin\sqlnet.ora<br/><br/>
    Used TNSNAMES adapter to resolve the alias<br/>
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME = xe)))
    OK (0 msec)"
    So, how can I make that initial connection faster so I don't spend 15 years testing my application due to slow start-ups? :)
    Thank you.
    Kevin.
    {noformat}
    Edited by: 832285 on Jan 29, 2011 10:08 AM
    Edited by: 832285 on Jan 29, 2011 10:10 AM

    I have formatted my hard drive since my first post. I was running window 64 bit with a higher version of the ODAC and that proved to crash my machine with faulty error messages about memory. I have reverted to a previous version of the ODAC tools and everything works very smooth now. Still the connection time is consistently 20 seconds or longer on the first attempt.
    Just a little more information.. I am currently taking a college course with 15 other students, as you can tell by the impersonal machine name, where programming using visual studio 2008, and Oracle 10g xe is expected. All of us are using a 64 bit environment and we all have difficulties cutting down the load time of making the first connection to Oracle. Some people are longer making the connection, but none are shorter.
    One other note. After the first connection is made, taking 20 or more seconds, and is closed, all subsequent openings of the connection are instantaneous, for all of us.
    If there is ANYTHING more I can get for you, please let me know. With my environment stable as it is, I will not need to format or change any information for the foreseeable future.
    Here is the information you requested
    1 The connection method I am using, I have chosen the manual connection for you, however the delay exists if the connection is made through the GUI as well.
    Historically, I am getting slow connection speeds through adding the connection through the GUI or by a manual connection. Here is how I am doing it manually. I have the connection being created in 20 seconds, which is the best I can get.
    Imports Oracle.DataAccess.Client
    Also included project reference: oracle.dataaccess / version 2.111.6.20
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim connString As String = "Data Source=XE;User Id=abc;Password=abc;"
            Dim con As OracleConnection = New OracleConnection()
            con.ConnectionString = connString
            Try
                con.Open()
                MessageBox.Show("Connected!")
                con.Close()
                con.Dispose()
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        End SubMy current TNS Ping results
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 16-FEB-2011 01:02:36
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))
    OK (0 msec)2 Connection to SQL plus is instantaneous.
    I fought for weeks about the ODAC version 11.2.0.1 that you see in the previous post, and that would be a whole new thread. Suffice it to say I have a reliable environment to program in with this 10.2.0.1.0 version that I am running now, and the connection time has not changed, it is still minimum 20 seconds load time, sometimes up to 25.
    3 Ram usage in my typical environment
    I am running this laptop with 4 gigs of ram. This is a typical environment I would be running my application in.
    Physical memory
    total 4090
    cached 1753
    available 2345
    free 656
    system
    handles 27141
    threads 911
    processes 70
    commit megs 2860/8179
    kernel memory megs
    paged 201
    nonpaged 52
    4 I formatted my machine and reinstalled the Windows 7 professional operating system as of a few nights ago. The Oracle software on my machine is
    Oracle Database 10g express edition
    ODAC 11.1.0
    I amm not sure what filename you would need in addition to the product names that I have installed.
    5 The information from the SET command is
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\stepheke\AppData\Roaming
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    COMPUTERNAME=STEKEV0908
    ComSpec=C:\Windows\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\stepheke
    LOCALAPPDATA=C:\Users\stepheke\AppData\Local
    LOGONSERVER=\\STEKEV0908
    NUMBER_OF_PROCESSORS=2
    oracle_sid=xe
    OS=Windows_NT
    Path=C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Oracleapp\stepheke\product\11.1.0\client_1;C:\Oracleapp\stepheke\product\11.1.0\client_1\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Windows Live\Shared
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 10, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=170a
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    ProgramW6432=C:\Program Files
    PROMPT=$P$G
    PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\stepheke\AppData\Local\Temp
    TMP=C:\Users\stepheke\AppData\Local\Temp
    USERDOMAIN=stekev0908
    USERNAME=stepheke
    USERPROFILE=C:\Users\stepheke
    VS90COMNTOOLS=c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\
    windir=C:\Windows

  • Very Slow internet connection with WRT150-N Wireless Router

    I have a WRT150-N wireless router hooked up downstairs to the modem and I am upstairs right now with internet that is very slow, it shows it is 18 megabytes/second and the connection says poor (i have a wireless G card in this computer).  I have another computer that is about 10 feet away from the router with a wireless N card and it says that the connection is 160 megabytes/second, but again it is running very very slow.  The third computer is back upstairs by this one and it has a Wireless N USB adapter and is running about 170 megabytes per second.  They are all about the same speed in opening websites but again are very slow to do so.  Any ideas on what is going on or how I can get it faster?

    First of all, the speeds you are quoting all sound like Mbps (megabits per second) connection speeds, not data throughput speeds.  You really need to measure your actual download speed to tell what is actually going on with your system.
    Use speedtest.net and test your system.  Turn off all other computers except the test computer.  Test under the following conditions:
    1)  connect one computer, by wire, directly to your modem
    2)  connect the same computer, by wire, directly to your router
    3)  connect the same computer wireless to your router
    4)  connect your other computers, wirelessly to the router, one at a time
    Also, state the speed that you are paying your ISP for.
    Report your download and upload speeds for all of the above tests.
    Note that the speed that you are paying for should be about the same as your results from test 1 and 2 above.
    After you have done these tests, it will be much easier to tell where the problem is. 

  • Very Slow Internet Connection with Leopard Server

    I have build a new Leopard Server on a Dual G4 867 box, 1.38GB RAM, 10M external Ethernet Card on WAN side into ADSL router on 2Mbit/s connection where we have an 8 IP address range, nothing else contending for the bandwidth.
    When I down load a file using my Leopard client directly on one of our external WAN IP ports, I get maximum throughput from the links of the order of 200kBytes/sec. When I use the same client working through the Leopard Server, which is acting as a NAT firewall router, I get throughputs of less than 1/20th of that, e.g. 10kBytes/sec or less.
    I monitored the Leopard Server and it is under utilised in terms of CPU, RAM, disk I/O, port thruput, etc. I have also checked Activity Monitor and the whole machine is barely idling on resource usage, yet the throughput is abysmal.
    Can anyone give me any clues as to why this might be? Any thoughts on what else to check?

    http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=6&PFid=6&Le vel=5&Conn=4&DownTypeID=3&GetDown=false
    They don't seem to have a 10.5 driver listed but Apple may have included one in Leopard (as in previous Tiger and Panther). You just "plunked" the card in?
    It does seem Apple has done some major overhaul when it comes to (ethernet) drivers as they now supports flow-control also at 10/100 Mbit. You have the interface (duplex) set to autonegotiate?
    Also my older Belkin (Broadcomm chip) "AirPort" PCI card only seems to be "semi supported" under Leopard as it is now reported as thirdparty but under Tiger it was udistingushable from a regular AirPort Extreme card.
    Maybe an update will fix this?
    Having said that the Realtek based cards isn't really know as the best working/quality ones.
    I have some older 10/100 Asanté cards laying around and a cheap Realtek 8169 (gigabit) based card I havent tried yet.
    I also noticed a soon two year old Intel iMac I got recently has a Marvell based ethernet interface so maybe other Marvell based cards would work in Macs (haven't really looked at what's present in Leopard driver wise). Marvell seems to get good reviews on Internet (SysKonnect cards). This iMac for example supports Jumbo frames and VLAN.

  • Oracle.DataAccess 2.112.1.0 - Connection Pool Problem

    Hi,
    Oracle.DataAccess 2.112.1.0 is having connection pool problem. The no. of TCP connections to Oracle database keep increasing untill the server's session run out of limit. My application created connections, use them, close them, and dispose them properly. When using previous Oracle.DataAccess 2.111.6.20, the no. of TCP connections do not increase.
    My database connection string has "Min Pool Size = 3 and Max Pool Size = 150".
    With 2.111.6.20 version, TCP connection stays at 3.
    With 2.112.1.0, TCP connection keep increasing for every 5 minutes. I've tried to disable Self Tuning, but still can't prevent the connections from increasing.
    Later today, I downloaded Oracle.DataAccess 2.112.1.2 (it comes with ODAC 11.2.0.1.2) and test again, the problem is resolved... no more connection increases... but.... it is only for 32 bit Windows.
    Unfortunately, there is no Oracle.DataAccess 2.112.1.2 for 64 bit Windows Server 2008.
    May I know how can i resolve this problem on 64bit Window installed with Oracle 11g R2 client, which comes with Oracle.DataAccess 2.112.1.0, which has serious problems...(according to this 11.2 ODP.NET causing test runner failures )
    Many thanks for your time and answers!
    Edited by: user1502907 on 04-Sep-2010 23:01

    Hi,
    The only thing that jumps out within your problem description is that connections are being increased every 5 minutes. Are you sure its every 5 minutes and not 3 minutes which is the timing interval used by the Connection Pool facility to perform connection pool maintenance. If this occurs even when the application is idle then you could be running into the following known issue filed against 11.2.0.1.0 and fixed in 11.2.0.1.2.
    Bug 9711600 - CONNECTIONS INCREASE BEYOND MAX POOL SIZE EVERY 3 MINUTE
    This is specific to using the option CommandBehavior.CloseConnection when calling execute reader. Are you using this option and then also closing the connection in code before the datareader object is closed, if so you may be hitting this bug. You can also generate an ODP trace at level 15 of the behavior and if you see negative pool counts, that is also a diagnostic that points to this bug.
    This is fixed in 11.2.0.1.0 Patch 3 or later for x64. If you have support, I recommend you open a service request to verify if this is your issue and if a patch set may help you.
    Regards
    Jenny B.

  • Connect to oracle database with Oracle.DataAccess.Lite_wce.dll

    With Oracle.DataAccess.Lite_wce.dll i want to ceonnect to oracle database.
    I try like:
    OracleConnection conn = new OracleConnection("Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=baza1)));User Id=xx;Password=xx;");
    conn.Open();
    but it said "S1000[POL-3023] the database does not exist".
    What i am doing wrong?

    what client are you using if you are using windows mobile then
    use
    Oracle.DataAccess.Lite.dll on the handheld
    connection string is "dsn=databasename;uid=SYSTEM;pwd=userpassword"
    the username is always system, the passw0rd the the user password of the specific user that the handheld is created for, the database name depends you can see it in the device->orace->odbc.txt file
    if your re on c# then you should write
    using Oracle.DataAccess.Lite;
    LiteConnection OraCon;
    OraCon = new LiteConnection(connectionstring);
    OraCon.Open();

  • Cannot establish connection with Oracle database

    Hello
    This is the first time I use BOE server with Crystal Report to execute some tests, and one issue is blocking me now, and I am not even sure if this is the right Forum where I should post it.
    I installed BOE server XI 3.1 SP4 on Linux machine (new installation), and then I uploaded some existing Crystal Report templates that are working fine on another BOE server. Those CR templates have to establish a connection with a remote Oracle database to get the data, and we pass all credentials for this purpose.
    The first time I run my first test I received this error that I could not find anywhere on the web :
    ErrorLog 2011  8 10  7:05:52.505 14215 356 (Administrator:82) (../reporthandler.cpp:12462): CReportHandler::buildReportViewerError: CSResultExceFailed to open the connection." FileName:"../reporthandler.cpp" LineNum:12458 ErrorCode:756 ErrorMsg:"Failed to open the connection.
    {FBAD55EE-BEAF-11E0-BC1C-005056813A72}.rpt" DetailedErrorMsg:""
    I believe that the CR was not able to establish the connection with Oracle, so I install Oracle Client on the same machine (test remote connection ==> pass), I set the ORACLE_HOME variable, and I edit the file <installation_home>/ bobje/java/CRConfig.xml to add the path to ojdbc14.jar, and finnaly restart the tomcat server. However I am still getting the same error message.
    Is there any hint that can help me troubleshooting this issue?
    Thank you

    do the reports use native oracle connectivity or JDBC ?
    what version of Oracle client did you install ?
    was it 32bit or 64bit client ?
    what your LD_LIBRARY_PATH variable set to ?
    what does it say in the CMC when you look at CR report's DB properties ?

  • Mapping LDAP Role in Building Your First Process with Oracle BPM 11g

    I'm working on "Building Your First Process with Oracle BPM 11g" I'm at the end of step where assigns user for the requester. The problem is in identity lookup, "Realm" is empty for Remote_WLServer.
    Servers are up and running. Demo user community has been loaded - I can see the list of users and groups in the administration server under myrealm. We haven't done much since SOA suite 11g installation. I'm probably the first one who uses this. I wonder we have a missing set up? Can you me what's missing? Appreciate your help in advance.

    I get this error message when I clicked gear icon.
    "Server exception is : Connection refused from server"
    Here is the result of testing Remove_WLServer connection. Does this cause the issue?
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... success.
    Testing Server MBeans Model ... skipped.
    Testing HTTP Authentication ... success.
    2 of 9 tests successful.
    I have installed JDeveloper 9i, 10g, and 11g in my laptop. SOA is installed on linux.

  • Very slow download speeds with ATT U-Verse

    Hello,
    Experiencing very slow download speeds with Macbook Pro 2011, on Lion,  and ATT UVerse Max, which should allow for an avg. 11-12 MBPS speed. Instead, I get a fluctuating 60-370 kbps speed. I am not experiencing this problem on my Windows machines (Laptop running Windows 7 and Desktop on XP), it is only affecting the Macbook pro. I wonder if this issue is a known problem with ATT U-Verse and Macs, I spent hours yesterday with their support online and they couldn't help me, stating that from their side all settings were OK; the first representative from ATT re-booted the router remotely and that seemed to work for about 10 minutes, and then it went back to a crawling speed...
    Any suggestions welcome!
    Thanks

    Do you have QOS enabled in your router? Did you try plugging the win7 laptop directly and check the speed?

  • Problems with Oracle.DataAccess assembly after installing Oracle 11gR2

    Windows 7 x64 SP1
    Visual Studio 2010
    ODAC112012
    Oracle 11gR2 11.2.0.1.0 for Windows x64
    Oracle Patch 12429529
    IIS 7.0
    I had my development machine setup and working with all of the above items except for the Oracle 11gR2(and patch), I was using a separate Oracle server. However everything went bad after the installation of 11gR2, I get the following error when trying to run the web application: "Could not load file or assembly 'Oracle.DataAccess, Version=2.111.7.10, Culture=neutral'"...
    My application is built in .NET 3.5 and the application pool is in 32 bit mode in IIS 7.
    Do I have to do something with the assembly rebind trick?:
    C:\Windows\assembly\GAC_32\Policy.2.102.Oracle.DataAccess\2.112.1.2__89b483f429c47342>Policy.2.102.Oracle.DataAccess.config
    Any help is very appreciated.

    I don't run Oracle server locally just avoid stuff like this, but since you installed an x64 server while having the application running in x86 mode, one potential issue is that the binding redirect you were using is no longer working because it's set for the 64 bit version instead. You don't have 2.111.7.10 on the machine at all, so try deleting that reference and pointing directly at your ODAC version.
    Alternately reconfigure the project to compile for x64 and disable 32 bit mode in IIS, then use the 64 bit client.

  • New preview in connection with Oracle OpenWorld?????? Anyone???

    Will there be a new preview of jdev 10.1.3 in connection with Oracle OpenWorld???
    Supporting binding and ADF....Please!
    Johnny

    Thanks a lot to all the jdev team fot the efforts to put a new preview available ... we are really very excited to continue exploring (using) adf faces, data controls, ejb 3.0 or adf bc and all these necessary thinks we need to develop new modern software to address the business needs our customers.

  • Very Slow Internet Connection and Backups

    I have had a Time Capsule for some time now (1st generation) and it has caused nothing but headaches. I have put up with it for some time but I have a very slow internet connection and cannot leave Time Machine on or it bogs down my machine, so I only backup periodically. Specifics are provided below.
    I have a poor internet connection to begin with. When plugged in directly either to my modem or through Ethernet to the Time Capsule, I get download speeds of ~ 2.9 Mbits/sec download, 0.7 Mbits/sec upload. When connected over wireless, the speeds drop to about 0.6 Mbits/sec download, 0.6 Mbits/sec upload. I feel like I am working on dial-up. I have both a Mac and a PC, and speeds are the same on both, so it does not appear to be a computer issue. I have played with various settings in the Airport, including how connected (b-n or n only), DHCP settings, etc, but nothing makes a difference. Any suggestions?

    Welcome to the discussion area, bigbrianb!
    Have you downloaded a utility like iStumbler to get a look at the signal strength and noise on your wireless network?
    iStumbler will display most of the other wireless networks around you, so you'll have an idea of the competition for unused channels. Ideally, you want your network to be on a channel that is at least 4-5 channels away from any other network to minimize the chances of wireless interference. Is that the case there?
    Your signal strength should be 50% or greater and noise less than 10% for a good quality connection on your network. Is that the case there?
    There are more things to test, but this will get things going.

  • Im having a very slow internet connection on my macbook pro??help pls

    hi
    i bought a macbook pro back in summer 2012 and it came with mountain lion but since then Im having a very slow Internet connection. I have one router at my home. my other PC works fine with the Internet even my iphone 4s is way faster with same wifi connection. when I download a TV show on macbook from itunes its takes about 40-50 min to download fully but on my phone or PC it usually takes about 18 mins. and also when I try to watch a hd clip on youtube, I need to put on lowest quality in order to watch it without lagging or stopping midway.
    does anyone else have this issue or I have to talk crap about apple product from now on???

    Hold down the option key and select the Wi-Fi menu in the menu bar. What values are shown for the following?
    PHY Mode
    Channel
    Security
    RSSI
    Transmit Rate

  • My 2007 mac pro has a slow internet connection with lion

    Hi:
    I've been dealing with a severely slow internet connection with my 2007 mac pro - dual quad core.  I have os 10.7.3.  I use wifi. 
    Typically, I'll experience difficulty loading websites completely.  Certain sites have a 90% failure rate to load most elements.  Other sites operate quickly from time to time.  Often, a site will simply fail to load at all.  My cable company cannot find anything wrong with my connection and other, newer devices don't have a problem loading sites.  It seems the issue is most likely related to my computer.
    Interestingly, I can usually "jump-start" the connection by turning my wifi connection off and on and this will (temporarily) allow me to get an image or video to download.
    Any ideas?
    Thank you for your time.

    Hi:
    I've been dealing with a severely slow internet connection with my 2007 mac pro - dual quad core.  I have os 10.7.3.  I use wifi. 
    Typically, I'll experience difficulty loading websites completely.  Certain sites have a 90% failure rate to load most elements.  Other sites operate quickly from time to time.  Often, a site will simply fail to load at all.  My cable company cannot find anything wrong with my connection and other, newer devices don't have a problem loading sites.  It seems the issue is most likely related to my computer.
    Interestingly, I can usually "jump-start" the connection by turning my wifi connection off and on and this will (temporarily) allow me to get an image or video to download.
    Any ideas?
    Thank you for your time.

  • Problem in connecting with Oracle

    hi everybody
    I have a problem in connecting with Oracle express 10g. I got an error that doesn't allow me to connect. hope anyone can help me and solve this problem
    --------------------Configuration: test - JDK version 1.6.0_20 <Default> - <Default>--------------------
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at DB.dbConnect(test.java:36)
    at test.main(test.java:18)
    this is the code that I'm following
    import java.io.*; import java.sql.*; public class test2 {   public static void main(String[] args) {     try {       Connection con=null;       Class.forName("oracle.jdbc.driver.OracleDriver");       con=DriverManager.getConnection(         "jdbc:oracle:thin:@PLANET:1521:ORCL",         "scott",         "tiger");       Statement s=con.createStatement();       s.execute("INSERT INTO BOOKS VALUES('A Tale of Two Cities','William Shakespeare',4567891231,'05-JAN-1962')");             s.close();       con.close();   } catch(Exception e){e.printStackTrace();} } }
    Edited by: Vantasia on Nov 12, 2010 10:18 AM

    1. Is the connection url correct?
    "jdbc:oracle:thin:@PLANET:1521:ORCL" is fine.
    2. Is the TNS listener started?
    c:\oracle\product\ora10\bin> lsnrctl status
    3. Is a firewall between client and database server?
    Connection url with firewall would be different.
    http://download.oracle.com/docs/cd/B28359_01/java.111/b31224/jdbcthin.htm#i1004276

Maybe you are looking for

  • Troca da função ENTER nos documentos de marketing

    Caros, boa noite. No pedido de compra ou venda, se apertamos o enter, o documento tentará fechar. Alguém sabe se podemos trocar a função do enter? Queria que ele pulasse de uma linha para outra. Obrigado.

  • Using Skype on multiple devices

    I have the same Skype address I use on several devices including an Android phone.  The problem I have is that Skype seems to prefer to ring the phone first and I would rather it ring the laptop first.  Is there any way to prioritise which device Sky

  • Standard tcode is taking more time

    Hi, When i am trying to delete or save any shipments through standard tcodes VT01N and VT02N. It is taking more time to process. Please tell me the solution to increase the performance.

  • Trying to gift playlist and getting Your request is temporarily unable to be processed.

    I created a playlist with 19 songs. I gift playlist go through entire process, click purchase and get "Your request is temporarily unable to be processed. Try again Later" from Itunes

  • E75 mass messaging

    hi i'm currently using an E75 in Singapore, with SMS 2.0 (by affle) installed. i cannot send mass smses - not even to TWO people. everytime i try to send to many people, only ONE message will get through, all the rest will end up "waiting" in outbox