We have a proprietary application that needs to update customer data from an Access database. [Proprietary] looks for tblCust from the Source.mdb file. It worked fine when tblCust was a plain old native Access table.
The problem is that the actual live data exists in a SQL Server database. So I created a View in SQLDB and linked to it from Source.mdb. The linked table is “dbo_tblCust”; so I renamed it “tblCust”.
BUT the code from [Proprietary] fails against the linked table.
I suspect the problem is: a) security permissions with the linked table; the code does not recognize the renamed table in Source.mdb (the properties of the linked table provide the wrong name?).
Let me know what you think… I am really looking for a solution to allow the [Proprietary] routine to be successful and pull data from the actual SQL Server source.