vote up 0 vote down star

I would like to run an SQL query on an iSeries (...or "System i" or "AS/400"...) machine as part of a Nagios check, but haven't found a suitable way of interfacing the database yet.

IBM suggests using the ODBC driver of System i Access for Linux with unixODBC, but since both systems are new to me, I'd like to know if there are other ways of doing this.

Hacks involving telnet and expect are perfectly fine. :-)

flag

2 Answers

vote up 1 vote down check

I think this would be the simplest ...
Same as Access for Linux but it is the open source version: JTOpen

example taken from iSeries Information Center:

 // Connect to the server.
 Connection c = DriverManager.getConnection("jdbc:as400://mySystem");

 // Create a Statement object.
 Statement s = c.createStatement();

 // Run an SQL statement that creates
 // a table in the database.
 s.executeUpdate("CREATE TABLE MYLIBRARY.MYTABLE (NAME VARCHAR(20), ID INTEGER)");

 // Run an SQL statement that inserts
 // a record into the table.
 s.executeUpdate("INSERT INTO MYLIBRARY.MYTABLE (NAME, ID) VALUES ('DAVE', 123)");

 // Run an SQL statement that inserts
 // a record into the table.
 s.executeUpdate("INSERT INTO MYLIBRARY.MYTABLE (NAME, ID) VALUES ('CINDY', 456)");

 // Run an SQL query on the table.
 ResultSet rs = s.executeQuery("SELECT * FROM MYLIBRARY.MYTABLE");

 // Close the Statement and the
 // Connection.
 s.close();
 c.close();
link|flag
vote up 0 vote down

Found at Nagios Exchange:
DB2 Checker
Download DB2 Checker

untested...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.