I am looking for a good php script that will create a backup of a few tables.
However the method I want to use is, to create txt files that contain delete, reseed and insert statements to re-insert the backed up data.
I already have seen how in SSMS, can generate scripts to do the same thing.
But want an example of one in php.
So i can run this as a cron/scheduled task, to create txt files full of sql i can use safely to rollback data...WHich I think is a far easier to manage solution, then the normal sql server backup process.
Thank you.