Hi,
I am trying to run a script that executes a script inside it (using @) and I am getting errors when the first script tries to execute the second (p5.sql). When I run the script in regular TOAD I get no errors. Thanks for your help!
Script 1 inserts a record into table DPOINT and then executes script p5.sql
insertintodpointvalues('Run Progs--P5');
commit;
@p5.sql
Script p5.sql inserts another record in DPOINT
insertintodpointvalues('aaaaa');
commit;