Need Help ASAP!

  • I get this error:

    "This SQL Server has been optimized for 8 concurrent queries. This limit has been exceeded by 1 queries and performance may be adversely affected."

    I don't even use SQL Server...why would this be happening all of a sudden?

    Thanks,

     

    Gary

  • Are you using MSDE?

  • I don't think so.  Like I said, I've only used MS Access.  My server all of a sudden is giving me this error.

    I have a hosting account through Interland and generally use a Plesk interface....but I do have the ability to log on via terminal services.

    Any ideas here?

  • I don't see Access in your original post. It sounds like an MSDE error. Sorry I can't help any more. Sounds like you need to contact Interland.

  • Is it possible that some tables are linked to msde??

  • Nope, I do a call to the MS Access database only....one table lives there:

     

    var oConn = Server.CreateObject("ADODB.Connection")

    MdbFilePath = Server.MapPath("database/pornstar.mdb");

    oConn.Open("Driver={Microsoft Access Driver (*.mdb)}; DBQ=" + MdbFilePath + ";");

  • Now it became interesting. Are you sure it's not possible that the access db has LINKED TABLES?

  • I reckon people would be more keen to help if you posted a copy of pornstar.mdb

    Under what circumstances does the error message appear? Are you accessing table data, running queries etc?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Haha!  No doubt!  It happens when I'm trying to do an insert into the database....using asp (jscript).

    Nothing fancy going on here...it's a brand new site I'm working on...same server as all my other sites, same code pulled off an existing site.

    Query works, connection strings are correct...out of the blue...this lousy error message....it's BS I tell you!

  • Sounds like Access is using the SQL Server Desktop Engine instead of JET, which limits the number or running queries to 8. See this article:

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/architec/8_ar_sa2_0ciq.asp

    and this

    http://techrepublic.com.com/5100-10878_11-5031981.html

Viewing 10 posts - 1 through 9 (of 9 total)

You must be logged in to reply to this topic. Login to reply