Hi Clay,
With JDBC, I have used the following successfully:
dbConnection = HikariCPDatasource.getConnection();
dbConnection.setSchema("public");
*dbConnection.createStatement().execute("ALTER TABLE tablename
NOLOGGING");*
*dbConnection.createStatement().execute("SET STREAMING ON");*
for(...) { ** execute insert statements ** }
*dbConnection.createStatement().execute("SET STREAMING OFF");*
*dbConnection.createStatement().execute("ALTER TABLE tablename LOGGING");*
dbConnection.close();
Hope this helps,
Jose
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/