Not connected to Oracle

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Not connected to Oracle

    I have a simple SQL Select statement which is called in an
    ASP file. But this gives error saying

    Microsoft OLE DB Provider for Oracle (0x80004005)
    ORA-03114: not connected to ORACLE

    If I refresh the page again and again, it will get loaded
    successfully..

    Any idea why this is happening? Any help/advice would be
    greatly appreciated.

    thanks
    Sugith
    Sugith Kumar Guest

  2. Similar Questions and Discussions

    1. Running NTDSUTIL in Directory Services Restore mode - should be connected or NOT connected to the network?
      Gurus, I have been studying Windows Server 2003. Say you have an operations master which is off-line due to a lengthy hardware failure, such as...
    2. scanner not connected?
      I have windows xp, acrobat 6 standard at canon 1150 with the z40 fiery i installed the fiery scan software on the computer but when i scan with...
    3. detecting if I am connected to a ISP
      Hi, I have written a small mail pre-viewer in Ruby/FXRuby which allows a graphic view of incoming mail headers, from which I can select canditates...
    4. Getting the list of connected computers on a LAN
      Hi, Afflicted for my bad English but I'm French. That made several days that I seek a command allowing me to display the list of the connected...
    5. Networking xp to xp no cable connected
      How have you connected the two machines?? Are you using a direct cable connection ? (if so are you using a cross over cable instaed of a standard...
  3. #2

    Default Re: Not connected to Oracle

    what version of oracle?
    what version of oracle network software?
    what odbc or oledb driver are you using?
    show your connection string
    show your code

    --
    Mark Schupp
    --
    Head of Development
    Integrity eLearning
    Online Learning Solutions Provider
    [email]mschupp@ielearning.com[/email]
    [url]http://www.ielearning.com[/url]
    714.637.9480 x17


    "Sugith Kumar" <sugith_kumar@dell.com> wrote in message
    news:54ce01c37d36$9a7a5400$a501280a@phx.gbl...
    > I have a simple SQL Select statement which is called in an
    > ASP file. But this gives error saying
    >
    > Microsoft OLE DB Provider for Oracle (0x80004005)
    > ORA-03114: not connected to ORACLE
    >
    > If I refresh the page again and again, it will get loaded
    > successfully..
    >
    > Any idea why this is happening? Any help/advice would be
    > greatly appreciated.
    >
    > thanks
    > Sugith

    Mark Schupp Guest

  4. #3

    Default Re: Not connected to Oracle

    Version of Oracle is 9i.

    Code is as follows

    Set cn = Server.CreateObject("ADODB.Connection")
    cn.Open "Provider=MSDAORA;Data Source=wwpd;User
    ID=app_user_sosa;Password=newuser;"
    cn.CursorLocation = adUseClient

    Thanks
    Sugith

    >-----Original Message-----
    >what version of oracle?
    >what version of oracle network software?
    >what odbc or oledb driver are you using?
    >show your connection string
    >show your code
    >
    >--
    >Mark Schupp
    >--
    >Head of Development
    >Integrity eLearning
    >Online Learning Solutions Provider
    >mschupp@ielearning.com
    >[url]http://www.ielearning.com[/url]
    >714.637.9480 x17
    >
    >
    >"Sugith Kumar" <sugith_kumar@dell.com> wrote in message
    >news:54ce01c37d36$9a7a5400$a501280a@phx.gbl...
    >> I have a simple SQL Select statement which is called in
    an
    >> ASP file. But this gives error saying
    >>
    >> Microsoft OLE DB Provider for Oracle (0x80004005)
    >> ORA-03114: not connected to ORACLE
    >>
    >> If I refresh the page again and again, it will get
    loaded
    >> successfully..
    >>
    >> Any idea why this is happening? Any help/advice would be
    >> greatly appreciated.
    >>
    >> thanks
    >> Sugith
    >
    >
    >.
    >
    Sugith Kumar Guest

  5. #4

    Default Re: Not connected to Oracle

    Try loading the Oracle 8 network software instead of the Oracle 9 network
    software. IIRC, the MS OLEDB drivers do not support Oracle 9 (have to use
    ..NET drivers, don't know the details).

    Or

    Use the Oracle OLEDB provider instead of the Microsoft provider (if your
    application can handle it that way).

    --
    Mark Schupp
    --
    Head of Development
    Integrity eLearning
    Online Learning Solutions Provider
    [email]mschupp@ielearning.com[/email]
    [url]http://www.ielearning.com[/url]
    714.637.9480 x17


    "Sugith Kumar" <sugith_kumar@dell.com> wrote in message
    news:0a6a01c37d97$7c955140$a101280a@phx.gbl...
    > Version of Oracle is 9i.
    >
    > Code is as follows
    >
    > Set cn = Server.CreateObject("ADODB.Connection")
    > cn.Open "Provider=MSDAORA;Data Source=wwpd;User
    > ID=app_user_sosa;Password=newuser;"
    > cn.CursorLocation = adUseClient
    >
    > Thanks
    > Sugith
    >
    >
    > >-----Original Message-----
    > >what version of oracle?
    > >what version of oracle network software?
    > >what odbc or oledb driver are you using?
    > >show your connection string
    > >show your code
    > >
    > >--
    > >Mark Schupp
    > >--
    > >Head of Development
    > >Integrity eLearning
    > >Online Learning Solutions Provider
    > >mschupp@ielearning.com
    > >[url]http://www.ielearning.com[/url]
    > >714.637.9480 x17
    > >
    > >
    > >"Sugith Kumar" <sugith_kumar@dell.com> wrote in message
    > >news:54ce01c37d36$9a7a5400$a501280a@phx.gbl...
    > >> I have a simple SQL Select statement which is called in
    > an
    > >> ASP file. But this gives error saying
    > >>
    > >> Microsoft OLE DB Provider for Oracle (0x80004005)
    > >> ORA-03114: not connected to ORACLE
    > >>
    > >> If I refresh the page again and again, it will get
    > loaded
    > >> successfully..
    > >>
    > >> Any idea why this is happening? Any help/advice would be
    > >> greatly appreciated.
    > >>
    > >> thanks
    > >> Sugith
    > >
    > >
    > >.
    > >

    Mark Schupp Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139