Hi,
I have a database in MySQL and another database that runs on MS SQL. The MySQL is the backend database for my website running on Joomla. I have an ERP running my store. This ERP is made by a 3rd party in .Net
A table called the orders
gets updated whenever a user places an order in my website.
The order details must get flushed to my orders
table in my ERP.
The table structure in the two databases are totally different so I will do the mapping myself.
My questions are:
- How frequently should I transfer the data from my MySQL database to MS SQL?
- Someone suggested that I could write a web service that would periodically pump data to my table in the ERP. So I started thinking about Nusoap webservices. Is this the right way or is there a better way to do it ??
- I will also have to retrieve inventory-related information from my ERP to my MySQL database.