Hello,
I could I execute two query in the SQL TEXT Query ?
An example :
DELETE FROM SERVICE_LEVEL a
WHERE a.CALENDAR_DAY in
(select distinct B.CALENDAR_DAY from SERVICE_LEVEL_UPLOAD B);
insert into SERVICE_LEVEL (select * from SERVICE_LEVEL_UPLOAD);
I get an error ORA-00911....
The database in Oracle.
Thanks