Search results

  1. M

    "Specify the table containing the records you want to delete" error

    Finally figured it out. I found the solution using microsoft's support page. I had to switch Unique Records from No to Yes. I read this somewhere else, but for whatever reason I missed it. Here is my final sql view. I actually reverted to my original delete query and it worked. Thanks for...
  2. M

    "Specify the table containing the records you want to delete" error

    Now I go back to the "Could not delete from specified tables" Here are the two sql views 1) select query 'undoSO' SELECT SO.* FROM SO INNER JOIN SOupdate ON (SO.[Security ] = SOupdate.[Security ]) AND (SO.Cusip = SOupdate.Cusip) AND (SO.Account = SOupdate.Account) AND (SO.[Settle Date] =...
  3. M

    "Specify the table containing the records you want to delete" error

    In my linked table which is now a query, when I uncheck the fields or remove them when I run the delete query I get the following message "Query must have at least one destination field."
  4. M

    "Specify the table containing the records you want to delete" error

    Now I get the following error "Could not delete from specified tables" My new delete query with sql view DELETE * FROM undoSO; undoSO was my previous delete query
  5. M

    "Specify the table containing the records you want to delete" error

    Unfortunately, that didn't work. Same error message. I am basically trying to delete the records from the SO table, which are present in SOupdate table. I am using this query as an undo function on a form. SOupdate was populated with data from a file and in the event the user accidently runs the...
  6. M

    "Specify the table containing the records you want to delete" error

    I read a few threads regarding this but I am unable to find a solution. I have two tables which I am using a delete query to remove data from. The first table 'SO' is my master table and 'SOupdate' is the table where I have data I want to remove from 'SO'. My delete query is as follows (SQL...
Back
Top Bottom