I can read one table but the other not??? Why
Hi,
I have a DB with a lot of table, which came with a software we bought (it is in SQl server 2003).
I added some table and I can have acces to them. But when I do a select to the original tables I get the next errror:
===
Microsoft OLE DB Provider for ODBC Drivers error '80040e37'
[Microsoft][ODBC SQL Server Driver][SQL Server]El nombre de objeto 'pl_mov_general' no es válido.
===
The code is simple. It is:
===
Set conn = server.createobject("adodb.connection")
conn.open "DSN=CCS_BACKUP"
set rs = server.createobject("adodb.recordset")
sql=" SELECT * FROM pl_mov_general"
response.write(Sql)
rs.open sql,conn
===
Should it be something with the level of security on the server? If so, how do I change that?
Many thx,
Johny
|