Упростите это. Это будет намного проще.
Сначала получите таблицы, которые вы хотите очистить.
<cfquery name = "tablesToClear">
select table_name
from tables
where table_name not in ('TBL_SY', 'TBL_USER')
</cfquery>
Теперь создайте свой l oop и удалите строки.
<cfoutput query = "tablesToClear">
<cfquery>
delete from #table_name#
</cfquery>
</cfoutput>