I have a access 97 form linked to a SQL 7.0.database table. The form is used to delete records in the table (TABLE A)based on the date and servername the user chooses. The table in the backend has a trigger that fires on delete. The trigger has only one line..
INSERT INTO DELETEDTEMP SELECT * FROM DELETED.
Now when I try to delete data from the table A access does not allow me to deleted records and comes up with the error message "ODBC error - delete on linked table ' logrecs ' failed"
If I remove the trigger everything is fine. The trigger is very imp to further processing.
Can anyone tell me why this is happenning?? Thanks a ton
Laksh
INSERT INTO DELETEDTEMP SELECT * FROM DELETED.
Now when I try to delete data from the table A access does not allow me to deleted records and comes up with the error message "ODBC error - delete on linked table ' logrecs ' failed"
If I remove the trigger everything is fine. The trigger is very imp to further processing.
Can anyone tell me why this is happenning?? Thanks a ton
Laksh