I am having an issue during the execution of my scripts.
It seems as if a command from the previous script execution is left in the memory and ran multiple times upon execution of my next script.
For example, I have 2 scripts named "DROP.SQL" and "CREATE.SQL" one being used to drop all tables, and the other to create tables, not including constraints which is a different file that I am not using at the moment. The problem I am having is this:
@CREATE.SQL - Tables created
@DROP.SQL - Script runs and drops tables showing success.
@CREATE.SQL - This is where the problem occurs. Once I try to run this script again, it acts as if there is a drop command left over in the memory that didn't get executed (my DROP.LOG says otherwise) and it attempts to execute it. In the screen shot below you can see that it has attempted to execute this command from the drop script 3 times.
I have also attempted running a drop command manually prior to running the CREATE.SQL script file which created the same result. This happens when I am running other scripts also. I attempted running a script to add constraints to the tables and had similar results.

commit?