yetanotherjo
Technical User
I've set up an Access database as a linked server. Is there a way to delete and add (ie "insert into") a table from this using a stored procedure in SQL2005 Express?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
delete from AccessDB...TableName
where Column = 'Value'
insert into AccessDB...TableName
select Column1, Column3
from SQLTable
Where Column = 'Value'