I have a text file containing SQL statements. I wish to run this file in DB2 database to execute the statements. The file contains a series of simple row inserts.
eg.
INSERT INTO x (a, b, c, d, e) VALUES ('f', 'g', 'h', 'i', 'j')
INSERT INTO ....
etc.
Can anyone please assist? I aware that there is an 'insert into x from file y' command somewhere.
Thanks.