I am attempting to delete a record from a table using the following code. I can successfully add records to this table but continue to receive ODBC Error Code=S1000 errors when I try to delete from the table. <br><br>Here is the setup code which queries my table (equipmen) and list all the job categories the individual has based on the name provided in a submitted form. <br><br>Getjobs.cfm code:<br><br><CFQUERY NAME="jobs" DATASOURCE="PW_Personnel"><br> SELECT FIRST, LAST, TITLE, EQUIP, SENDATE, STATUS, APPDATE, POSTINGNO from equipmen<br> where last='#Form.lname#' AND first='#Form.fname#' <br></CFQUERY><br><br><!--- response to client ---><br><!--- check for empty recordset first ---><br><cfif #jobs.RecordCount# is 0><br> <center><h2>Unable to find the information you requested!</h2><p><br> Try another name in the form above!<br><cfelse><br> <HTML><br> <HEAD><br> <TITLE>Public Works Job Postings</TITLE><br> <br><br><script LANGUAGE=JAVASCRIPT><br><br><!--<br><br>function _CF_checkgetquestion(_CF_this)<br><br> {<br><br> return true;<br><br> }<br><br><br>//--><br><br></script><br><br></HEAD><br> <body bgcolor=white><br> <center> <br> <table border=0 width=80%><br> <tr bgcolor=burlywood><th colspan=6><font size=+1> Postings for: <cfoutput>#Form.fname# #Form.lname#</cfoutput></font></th></tr><br> <tr><td><b>Action</b></td><td><b>Record Number</b></td><td><b>Equip</b></td><td><b>Title</b></td><td><b>Status</b></td><td><b>Appointment Date</b></td></tr><br> <!--- Output table record(s) section ---><br> <CFOUTPUT QUERY="jobs"><br> <tr><td><a href="nopost.cfm?posting=#NumberFormat(postingno, '999')#">Delete</a></td><br> <td>#NumberFormat(postingno, '999')#</td><br> <td>#equip#</td><br> <td>#title#</td><br> <td>#status#</td><br> <td>#DateFormat(appdate, 'mm/dd/yyyy')#</td><br> </CFOUTPUT><br> </table><br> <p><br>Click the <font color=blue>DELETE</font> beside the record you want removed!<br></CFIF><br><br>Here is the 'nopost.cfm' code:<br><br><CFIF ParameterExists(url.posting)><br> <CFQUERY NAME="deljob" DATASOURCE="PW_Personnel"><br> DELETE FROM EQUIPMEN<br> WHERE postingno = #url.posting#<br> </CFQUERY><br></cfif><br><cflocation url="getjobs.cfm"><br><br><!--- response to client ---><br><HTML><br>.....additional output ...<br><br>The table is a dBase table and the postingno field is a real number type. I have also tried this as a form submission instead of passing the url parameter with the same results. Any response would be much appreciated.<br>Thanx,<br>koopmaun<br>