I have developed a mapping in informatica.Source is file.I need to write a post sql that will delete the already existing data if the file with the same name comes again.File comes once in every month and naming is like jass_naming_yyyymm.csv . I have written like delete from tab where load_date = sysdate but its not working.laod date is a column in target table taht stores yyyymm from the file.So query shoud be like if file with existing yyyymm comes again the existing data should get deleted and new file will be loaded.Please give soluntion.