I'm using a SqlExecutor deleting some data in a Oracle database.
FME_SQL_DELIMITER ;
--feuille 1
DELETE FROM G_ADT_AGRI.EXP_INVEST WHERE OBJECTID = @Value(OBJECTID);
/*
--feuille 2
DELETE FROM G_ADT_AGRI.FON_BATI WHERE OBJECTID = @Value(OBJECTID);*/
As you can see I commented the "feuille2" part. But I have this error message :
An error occurred while accessing a table result for feature type `QueryFactory_SQLExecute'; message was `Execution of statement `/*
--feuille 2
DELETE FROM G_ADT_AGRI.FON_BATI WHERE OBJECTID = 699' did not succeed; error was `ORA-01742: comment not terminated properly
Although I use the right comment syntax. What did I miss?