|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Invalid object name 'dbo.Products'
i have an error with my shop system, i get this when i try to update a product: Microsoft OLE DB Provider for ODBC Driverserror '80040e37' [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'dbo.Products'. /manager/shop_products_edit.asp, line 159 i did not create this shop, and don;t want to knacker it. anyone know what causes this problem and how i might be able to go about correcting it? cheers, hinch |
|
#2
|
||||
|
||||
|
sounds like a table is missing.
Or you could be trying to access another database with the wrong syntax. In order to be able to fix the error you should post the SQL statement that creats that error. |
|
#3
|
|||
|
|||
|
Are you using a sql login that has the dbo role?
__________________
====== Doug G ====== I didn't attend the funeral, but I sent a nice letter saying I approved of it. --Mark Twain |
|
#4
|
|||
|
|||
|
no i'm not using the dbo login...
|
|
#5
|
|||
|
|||
|
Check your systables.
use yourDb go Select * from sysobjects where name = 'Products' and xtype = 'u' go if that query return 1 row, it means the table is exists in your db. and the problem is on your SqlSvr Login. Rgds, Tonny Soeroso |
![]() |
| Viewing: ASP Free Forums > Database > Microsoft SQL Server > Invalid object name 'dbo.Products' |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|