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

  1. #1

    Default Migration Error

    Hi group,
    I'm moving to a new Windows Server 2003 and IIS 6 from
    Windows Server 2000 and IIS 5. I get the error below
    when I access a asp page with a select statement ONLY if
    the database(Access 2002) is open. My legacy server
    allows the database to be open and the pages still post.
    Has anyone seen this before? If so, can you point my in
    the right direction on how to fix it?

    P.S. All the databases are running as shared.

    ADODB.Connection error '800a0e78'

    Operation is not allowed when the object is closed.


    Mike Guest

  2. Similar Questions and Discussions

    1. Migration for asp.net 1.1 to 2.0
      Dear all I am new to asp.net 2.0, and i have two questions about this 1.) If i migrate 1.1 to 2.0 , is it easy, since if migrate from 1.0 ->1.1,...
    2. Migration from 6.1 to 7 in IIS
      I install coldfusion like it suggested in installation guide on machine with IIS and coldfusion MX 6.1 already installed. Now I have 2 bunches of...
    3. CA Migration error
      I am trying to igrate our enterprise CA from W2K to W2K3. I am following Q298138. I have backed up on the old CA (OK) I have moved the CA to...
    4. Using HPL for migration
      If I want to use HPL for migrating from 7.2x to 9.3x which format I must use for uloading / loading data? Is there anything else I have to be aware...
    5. 9.20 to 9.40 migration
      Good morning all Apart from the details in TFM is anybody anywhere of any 'gotchas' when migrating 9.20 32bit to 9.40 64 bit - all on Solaris....
  3. #2

    Default Re: Migration Error

    "Mike" wrote in message news:1cc6e01c45306$66a8e370$a101280a@phx.gbl...
    : Hi group,
    : I'm moving to a new Windows Server 2003 and IIS 6 from
    : Windows Server 2000 and IIS 5. I get the error below
    : when I access a asp page with a select statement ONLY if
    : the database(Access 2002) is open. My legacy server
    : allows the database to be open and the pages still post.
    : Has anyone seen this before? If so, can you point my in
    : the right direction on how to fix it?
    :
    : P.S. All the databases are running as shared.
    :
    : ADODB.Connection error '800a0e78'
    :
    : Operation is not allowed when the object is closed.

    Mike...

    Showing relevant code would be helpful...

    --
    Roland Hall
    /* This information is distributed in the hope that it will be useful, but
    without any warranty; without even the implied warranty of merchantability
    or fitness for a particular purpose. */
    Technet Script Center - [url]http://www.microsoft.com/technet/scriptcenter/[/url]
    WSH 5.6 Documentation - [url]http://msdn.microsoft.com/downloads/list/webdev.asp[/url]
    MSDN Library - [url]http://msdn.microsoft.com/library/default.asp[/url]


    Roland Hall Guest

  4. #3

    Default Re: Migration Error

    Seems to me your script try to close a recordset when it's a select
    statement.

    Remove script that close the recordset. Instead, use set recordset =
    nothing.

    You must close connection, though.

    "Mike" <michael.hendricks@concrete.org> wrote in message
    news:1cc6e01c45306$66a8e370$a101280a@phx.gbl...
    > Hi group,
    > I'm moving to a new Windows Server 2003 and IIS 6 from
    > Windows Server 2000 and IIS 5. I get the error below
    > when I access a asp page with a select statement ONLY if
    > the database(Access 2002) is open. My legacy server
    > allows the database to be open and the pages still post.
    > Has anyone seen this before? If so, can you point my in
    > the right direction on how to fix it?
    >
    > P.S. All the databases are running as shared.
    >
    > ADODB.Connection error '800a0e78'
    >
    > Operation is not allowed when the object is closed.

    IPT 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