Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithYou could first query the database (in another node) to see if the table exists, an then decide whether to execute the DROP node based upon the result from the first node.
In Oracle:
select TABLE_NAME from sys.all_tables where TABLE_NAME='Temp_Table'
If this outputs a record then the table exists. So connect this output of this to the DROP node.