Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Database locked up

    I'm using an Access database and it seems to think it's being access by a
    process even though it's not. I can pull data, but cannot save any changes. I
    tried using

    <cfquery name="unlock" datasource="users">
    select money from nothing
    </cfquery>

    which simply returned an error and also this

    <cfset null = cfusion_dbconnections_flush()>

    Which said it's not supported in MX7. I thought about changing the name of the
    DB and reloading on the server, but I can't change my DNS, I have to get
    someone else to do it and yes, it would take time I don't feel I have. Anyone
    have any suggestions?

    Avenestra Guest

  2. Similar Questions and Discussions

    1. Database locked.
      Upon running my asp application, the application locks up. I now see a file with .ldb in the fpdb folder which I cannot delete. Apparently this is...
    2. gif is locked
      I pasted a snapshot in ps and saved as a gif. Now, I need to upload it for an example but I need to blur out the password. When I reopen the gif...
    3. locked out of my pc
      My kid was playing a joke and he changed the password on my wondow xp system, how do I got pass this?
    4. locked out
      Computer locked me out when idle for a couple of min. Requests admin. password, I forgot it. I had to cut power to log back in . It happened twice...
    5. I'm Locked Out!
      My mother purchased my computer from some one else she knew, and it was fine. I had administrator privileges and everything, but I let someone use...
  3. #2

    Default Re: Database locked up

    Give a try with this to flush all connections.
    <CFOUTPUT>#cfusion_dbconnections_flush()#</CFOUTPUT>
    adotfilm Guest

  4. #3

    Default Re: Database locked up

    I'll bet your Admin has checked the Maintain Connections box in Cold Fusion
    Administrator. This should be left unchecked and the .ldb should disappear
    (unless you look during the few milliseconds that a query is active). The
    Admin may be under the mistaken impression (I've never noticed ANY difference)
    that keeping that box checked is more efficient. You have to talk him out of
    it somehow.

    JMGibson3 Guest

  5. #4

    Default Re: Database locked up

    Thanks for the updated flush command, but that didn't work either. I got an
    error message that it's not supported in MX. I guess I'll have to work on the
    admin even though he's in it up to his ears and I hate to bother him.

    Avenestra Guest

  6. #5

    Default Re: Database locked up

    We do have the same ldb file issue with MX 7.01 and 'Maintain connections' is
    not checked in the CF Admin section for this DSN.

    We have tried the ?false query? method which has been suggested by many, with
    no luck.

    Any help is appreciated.


    niranjtb Guest

  7. #6

    Default Re: Database locked up

    it is was so convenient to be able to flush the db connections in 5.

    is there really no way to get rid of the .ldb file, without deleting the
    datasource via cfadmin?

    broken query method doesn't seem to work ...



    dr_bozak Guest

  8. #7

    Default seeking way to disable DB connections

    I spent the last hour and a half searching all the boards for a
    solution to programmatically disable a db connection in CF MX (while
    I was waiting for an unaccessed Access lock file to time out - how
    long WILL that take, anyway?).

    Guess I'll have to approach the admin of our shared server...

    But if anyone finds a solution PLEASE email me: [email]hc@blueboulder.com[/email] or
    reply here. :cry:

    H3ath0r 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