G
Guest
Hello, I have an Access application that links to SQL Server. One part of
the application allows for building lists of contacts. As you're building
the list it stores the person id (ContactID) in a front end table. When I
try running this line of code
DELETE TLB.* FROM TLB LEFT JOIN
vwTLBProspectiveBuyerDevelopment ON TLB.ContactID =
vwTLBProspectiveBuyerDevelopment.ContactID
I get this error message "Could not delete from specified table". I'm sure
it's because I link to the SQL Server view "vwTLBProspectiveBuyerDevelopment"
to figure out which rows in the front-end temp table to delete.
Any way to rewrite this SQL to not have this problem?
Thanks
the application allows for building lists of contacts. As you're building
the list it stores the person id (ContactID) in a front end table. When I
try running this line of code
DELETE TLB.* FROM TLB LEFT JOIN
vwTLBProspectiveBuyerDevelopment ON TLB.ContactID =
vwTLBProspectiveBuyerDevelopment.ContactID
I get this error message "Could not delete from specified table". I'm sure
it's because I link to the SQL Server view "vwTLBProspectiveBuyerDevelopment"
to figure out which rows in the front-end temp table to delete.
Any way to rewrite this SQL to not have this problem?
Thanks