I am trying to execute the following query:
statement.executeQuery("INSERT OPENQUERY (linkedServer, 'SELECT * FROM [Sheet1$]') EXEC storedProc @param");
THe SP takes one parameter, I need to pass that ... I usually do:
CallableStatement cstmt = null;
cstmt = conn.prepareCall("{call "+storedProc+"(?)}");
cstmt.setString(1, id);
cstmt.execute();
But How do I accomplish using java, as I have to run the above insert query as well.
Any help is highly appreciated.