Oracle 9.2.0.3.0 ODBC Fails

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

  1. #1

    Default Oracle 9.2.0.3.0 ODBC Fails

    We just upgrade our oracle server from 8i up to 9i and now our asp pages are
    failing. We were using the Microsoft ODBC drivers for Oracle V
    2.573.7926.00 to connect othe 8i server.

    At the beginning we were getting and odbc error when it was trying to
    connect in the script. After installing the Oracle ODBC drivers V
    9.02.00.006 we are not getting any error message at all. It just stops at
    Opening Page... and goes no where. Even if I switch back to using the
    microsoft odbc connection again it still just hangs now also.

    Here is the connection code we are using:

    ' ***** IQO is using the Oracle ODBC drivers *****

    myDSN="DSN=IQO;uid=user;pwd=password"

    'myDSN="DSN=IQO"

    'myDSN="DSN=IQO;userid=user;password=password"


    ' ***** IQ is using the Microsoft ODBC for Oracle drivers *****

    'myDSN="DSN=IQ;uid=user;pwd=password"

    mySQL="select MFGNO from Standard order by MFGNO"


    set conntemp=server.createobject("adodb.connection")

    conntemp.open myDSN

    set rstemp=conntemp.execute(mySQL)


    Thx,
    Scott Buerkley


    Scott Buerkley Guest

  2. Similar Questions and Discussions

    1. #24950 [Bgs]: Compiling PHP --with-oci8 --with oracle (Oracle 9i) fails
      ID: 24950 User updated by: fschulze at more-radio dot de Reported By: fschulze at more-radio dot de Status: Bogus...
    2. #24950 [Opn->Bgs]: Compiling PHP --with-oci8 --with oracle (Oracle 9i) fails
      ID: 24950 Updated by: sniper@php.net Reported By: fschulze at more-radio dot de -Status: Open +Status: ...
    3. #24950 [Fbk->Opn]: Compiling PHP --with-oci8 --with oracle (Oracle 9i) fails
      ID: 24950 User updated by: fschulze at more-radio dot de Reported By: fschulze at more-radio dot de -Status: ...
    4. #24950 [Com]: Compiling PHP --with-oci8 --with oracle (Oracle 9i) fails
      ID: 24950 Comment by: cunha17 at uol dot com dot br Reported By: fschulze at more-radio dot de Status: Feedback...
    5. #24950 [NEW]: Compiling PHP --with-oci8 --with oracle (Oracle 9i) fails
      From: fschulze at more-radio dot de Operating system: Solaris8 PHP version: 4.3.2 PHP Bug Type: Compile Failure Bug...
  3. #2

    Default Re: Oracle 9.2.0.3.0 ODBC Fails

    Just wanted to let everyone know, I started a new post called "Microsoft
    ODBC for Oracle" Failing. I am getting error messages now. As it turns out
    the, something with my connection string causes the IIS server to go to
    100%, so the web pages looked like they were hanging. I can not stop the
    www server and restart it. It just hangs. I have to reboot the server each
    time while testing :( so I am going back to troubleshooting the microsoft
    drivers instead. :)

    Thx,
    Scott Buerkley


    "Scott Buerkley" <Scott_Buerkley@yahoo.com> wrote in message
    news:%23LnVzmyKEHA.2556@TK2MSFTNGP11.phx.gbl...
    > We just upgrade our oracle server from 8i up to 9i and now our asp pages
    are
    > failing. We were using the Microsoft ODBC drivers for Oracle V
    > 2.573.7926.00 to connect othe 8i server.
    >
    > At the beginning we were getting and odbc error when it was trying to
    > connect in the script. After installing the Oracle ODBC drivers V
    > 9.02.00.006 we are not getting any error message at all. It just stops at
    > Opening Page... and goes no where. Even if I switch back to using the
    > microsoft odbc connection again it still just hangs now also.
    >
    > Here is the connection code we are using:
    >
    > ' ***** IQO is using the Oracle ODBC drivers *****
    >
    > myDSN="DSN=IQO;uid=user;pwd=password"
    >
    > 'myDSN="DSN=IQO"
    >
    > 'myDSN="DSN=IQO;userid=user;password=password"
    >
    >
    > ' ***** IQ is using the Microsoft ODBC for Oracle drivers *****
    >
    > 'myDSN="DSN=IQ;uid=user;pwd=password"
    >
    > mySQL="select MFGNO from Standard order by MFGNO"
    >
    >
    > set conntemp=server.createobject("adodb.connection")
    >
    > conntemp.open myDSN
    >
    > set rstemp=conntemp.execute(mySQL)
    >
    >
    > Thx,
    > Scott Buerkley
    >
    >

    Scott Buerkley 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