|
|
8000XXXX Errors ASP.NET 2.0 Classic ASP 1.0 Databases General Concepts Search Engine Optimization (SEO)Search | ASP FAQ Tutorials :: 8000XXXX Errors :: Why do I get 80040E37 errors? Why do I get 80040E37 errors?
Make sure that the table exists, and that the file exists in the path specified. If you are using a linked table, make sure that IUSR_machineName has permissions on the folder(s) hosting the 'remote' database files, and that the links are still pointing to a valid location... use Access' 'Linked Table Manager' to correct this situation.
Make sure that the object exists *as you spelled it*, that the owner name is specified in your query (e.g. dbo.tablename), that you are in the correct database (use databasename.ownername.tablename), and that the user in your ASP page (e.g. the UID or User ID in your connection string) has access to the object. If you are sure the object exists, see Article #2284. If you are trying to use a variable for a table name in a query, use dynamic SQL instead; for example:
For more information on using dynamic SQL, see http://www.sommarskog.se/dynamic_sql.htm....
If you are trying to access a table, column or procedure name that begins with numerics, consider changing the table name. You should never name objects with numbers... however in the meantime, you can probably surround the object's name with [] square brackers to keep SQL Server quiet about it. Related Articles Why do I get 8002000A errors? Why do I get 80040200 / 80040514 / 800A0E7A errors? Why do I get 80040e09 errors? Why do I get 80040E0C errors? Why do I get 80040E10 errors? Why do I get 80040E14 errors? Why do I get 80040E21 errors? Why do I get 80040E23 errors? Why do I get 80040E24 errors? Why do I get 80040E2F errors? Why do I get 80040e30 errors? Why do I get 80040E31 errors? Why do I get 80040e4e errors? Why do I get 80040E54 errors? Why do I get 80040E57 / 80040E07 errors? Why do I get 8004D00A errors? Why do I get 80070070 errors? Why do I get 800A01FB errors? Why do I get 800A0BB9 / 800A1391 errors? Why do I get 800A0C93 errors? Why do I get 800a0cb3 errors? Why do I get 800A0CC1 errors? Why do I get 800A0E78 errors? Why do I get 800A0E7C errors? Why do I get 800A0E7D errors? 80004005 Errors Can I use the NZ() function without getting 80040E14 errors? |