I have an Access database connected via ODBC to a SQL Server backend.
In the SQL Server database, I have a stored procedure called Empty_Table
.
The procedure does only this:
DELETE FROM TABLE
(The table should only be emptied).
How can I access this procedure in an Access database and execute it in the SQL Server database?
Thanks