I'd appreciate your help with this issue. I have a linked server pointing to an access database. But, when I want to query something from linked server I notice the following behavior:
- Intellisense doesn't recognize linked server name.
- There is not a schema name.
- Database were automatically named as "default"
I could to query with openquery command like this:
select * from openquery([SIM],'select * from 000_Lineas_a_cancelar');
Does that mean I have to use openquery() every time that I want to query to a linked server?
Can't I use a more natural query like this?:
select * from SIM.default.000_Lineas_a_cancelar