To do that you would need to, within each cell that has a reference to in_tb_v_s_intwall01, check the 2 or 3 data lines for each such reference. Then the checked references could be deleted. Finding and checking each reference in EE without a) incorrectly checking the wrong box or B) having an EE data error corrupt your mod would be a daunting task. Unfortunately if you don't have a back up then your best option is to use the search & replace with selection only option.
You could try http://code.google.com/p/mlox/wiki/Tes3cmd, it has the ability to delete references from cells, including all the data for each reference.
Show all the stuff you want to delete:
tes3cmd dump --type cell --instance-match in_tb_v_s_int_wall01 myplugin.espIf that looks good, then delete it:
tes3cmd delete --type cell --instance-match in_tb_v_s_int_wall01 myplugin.espThis feature is somewhat experimental, but I've used it to clean up plugins before.