can anyone help me .how to tranfer data from mssql to postgresql.new data comes to mssql database table in each hour.i want to tranfer only this new data to my postgresql table.what kind of script or what i have to do to achieve this. thanks
Hello, use a cron-job (unix) or taskservice (windows) to extract data from the MSSQL every hour. Put timestamps in the MSSQL and select the newest data.