I have written a delete query in access 2003 that is giving me a 3086 error. I don't have tables open. I also am only using one table to delete from. So I don't know what else I can do. The table is a linked table.
The error spot is highlighted in green. Any help is appreciated.
Tom
The error spot is highlighted in green. Any help is appreciated.
Tom
Code:
strSQL = "DELETE " & _
"FROM dbo_rpt_dat_CSDetail cs " & _
"WHERE cs.uci = 'JVB' AND cs.rptpd > 372 AND cs.trantype = 1 AND cs.modalid = 6;"
[GREEN] CurrentDb.Execute strSQL [/GREEN]