Ideally all the data where Area = Utica is deleted from the writer, the data that does not satisfy my query would remain. After deleting the records I would then load my new data.
thanks
Dan
Ideally all the data where Area = Utica is deleted from the writer, the data that does not satisfy my query would remain. After deleting the records I would then load my new data.
thanks
Dan
If the destination dataset is a database, the "SQL Statement to Execute Before Translation" parameter of the writer can be used to delete records which match a certain condition before writing new records.
-----
delete from <table_name> where <condition>
Takashi
-----
FME_SQL_DELIMITER ;
delete from <table1> where <condition1>;
delete from <table2> where <condition2>;
delete from <table3> where <condition3>;
-----
Regarding the first declaration "FME_SQL_DELIMITER ;", see the help doc for the SQLExecutor or the SQLCreator (description about SQL Statement parameter).