Is possible to create a cron-job on a as400 system (IBM) in order to update/insert large quantity of data on online server?

后端 未结 1 715
情话喂你
情话喂你 2021-01-17 02:52

I was looking here if is possible to insert/update a large quantity of rows from an as400 system.

I have a website stored on another server online and that website m

相关标签:
1条回答
  • 2021-01-17 03:28

    Yes it can be done.

    You can attach a database trigger to your stock table that pushes the key fields to a data queue anytime an insert, update or delete is performed. You can then process the data queue to send the updates to the web site using an HTTP POST or other means.


    • IBM Redbook: Stored Procedures, Triggers, and User-Defined Functions on DB2 Universal Database for iSeries
    • IBM i 7.1 Information Center: Data Queue APIs
    • Scott Klement's RPG IV Sockets Tutorial
    0 讨论(0)
提交回复
热议问题