I need to import a flat file into a database table every hour, however the file itself is continuously updated by an application (file doesn't lock so that's no problem). What i need is to make sure that i'm only importing the latest data for the last hour.
So i need to make sure that there is no duplicate data in the table and only bring in the data for that hour. Hope this makes sense!! oh and sadly there is no way to change the log files to create one every hour!
Thanks