Hi Brandon,
You might be finding that you can't delete from a view? You might have to change your query to use the syntax:
Select * From tabName Where obj Entirely Within Any (Select obj From plyName)
If that's too slow, stick with your original join but then carry out an Update that flags the records you want to delete from tabName. Once these are flagged, you can perform a second Select that returns the flagged records in tabName. You should then have no problem deleting them.
Example:
Select * From tabName Where obj Entirely Within Any (Select obj From plyName) Into updView
Update updView Set flag = "D"
Select * From tabName Where updView = "D" Into delTab
Delete From delTab
------------------------------
James Nolet
GIS Manager
CAF Consulting
Melbourne office, VIC, Australia
------------------------------