Hi,
i want to use openrowset to connect with readonly access to a mdb database.
i have created a view like:
SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'MS Access;Database=\\ruta\base.mdb;UID=Admin;PWD=admin', 'SELECT * FROM tabla')
AS derivedtbl_1
that i've name as "empleados"
But if i type "update empleados set campo1=1" it update field. how could i conect with openrowset but with only read.
Many thanks