How to make a simple API from AS400+DB2 IBM in order to sync data with an external website+mysql? [duplicate] - mysql

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
Is possible to create a cron-job on a as400 system (IBM) in order to update/insert large quantity of data on online server?
I have an AS400 system using DB2 on IBM Series and I would need to sync this data with another database that is hosted on another domain for a website.
We have all the articles on the AS400 system and I would like to update the stock in the website. It should be the most accurate possible and automatic too.

RPG can make use of JDBC. So you can write a RPG/Java program that can sync with the MySQL.

Related

how to update mysql database on the backend every hour [duplicate]

This question already has answers here:
Update mysql table every twenty four hours automatically
(2 answers)
Closed 4 years ago.
I have some basics with android development but I'm new to web development, and I want to build a MySQL database that gets data from different APIs, I don't want to do that on the client side.
So I'm looking for a solution to update the database from different APIs on the back end, so the clients can only connect to the database.
I have already figured out how to update the database on the client side, what I need is how to do it on a server and how I can run it every hour.
You can write a script in any language (for instance PHP or Python) that gets the data you want and updates the database with it. You can then use a cron job to run that script every hour.

How to schedule sql scripts to executed at regular intervals on prod DB servers [duplicate]

This question already has answers here:
How to schedule a MySQL query?
(2 answers)
Closed 5 years ago.
I am building a Data monitoring system to catch data issues on prod DB. I have written some SQL scripts with all validation and the script returns data which fails the validations.
Is there any free to tool to do this or is there a better way to achieve this?
How can I schedule my SQL scripts to run on regular intervals from one of our servers?
If you are on linux based systems, you can use cron.

how to insert data from a table in SQL server into another table in MySQL db [duplicate]

This question already has an answer here:
Inserting from MS SQL Server to MySQL database
(1 answer)
Closed 5 years ago.
I've created a website with CMS magento2 and I'm working with a MySQL database. now I need to connect it with SAP database which is a SQL Server DB. my question is how to insert data from a table in SQL server into another table in MySQL DB?
You need to use a linked server.
This question was already answered here: Inserting from MS SQL Server to MySQL database
You have two options:
You can create a restful API that receives the serialized data from one db and formats the data before pushing the data down to the db you want to use. The good thing about it is you can easily share data between the 2 DBs without having to worry. Quite flexible because the tables can be identical or not depending on what you need.
You can use the SIS ( Server Integration Services) tool present in the SQL Server that allows integrations into other database systems. It is a bit technical but here are a few steps you can follow on link to explain the integration of SIS packages with MySQL.

Way to create an event to save database in mysql [duplicate]

This question already has answers here:
Automated or regular backup of mysql data
(2 answers)
Closed 6 years ago.
Is there any way to create an event in phpMyAdmin which will allow me to save database into the folder each week?
No, this isn't possible. First, phpMyAdmin is designed to be an interactive GUI, not a scripting interface with an API for you to access. Secondly, there's no way to specifically call phpMyAdmin on any kind of schedule.
If you have command-line and task scheduler (cron, systemd, etc) access, you can script something pretty easily with mysqldump. If not, there are plenty of stand-alone utilities (including some suggestions linked in e4c5's post) which you can call in various ways (MySQL scheduled task, a scheduled task running on your local machine which hits a webpage triggering the dump, and more).

.sql script to load MySQL with sample schema and data? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Is there a “Northwind” type database available for MySQL?
Microsoft has the Northwind database to provide a sample database with sample data. I'm aware of how to create a script to do something like this for a MySQL database, but am wondering if such a thing already exists.
I've got a few applications I want to create as a learning exercise for myself.
Is anyone aware of a script for MySQL that will create a sample database(s) and populate it with a good amount of sample data? I'm looking for something with more than just a couple of tables with a couple of rows.
MySQL has some sample databases available for learning, most well known are world and sakila. You can download them at http://dev.mysql.com/doc/index-other.html.