web-dev-qa-db-ja.com

無効なキャラクターはどこですか(ORA-00911)

CLOBsをデータベースに挿入しようとしています( 関連する質問 を参照)。何がおかしいのかよくわかりません。テーブルに挿入したい約85個のClobのリストがあります。最初のCLOBのみを挿入する場合でも、ORA-00911: invalid characterを取得します。実行前にPreparedStatementからステートメントを取得する方法がわからないため、正しいことを100%確信することはできませんが、正しい場合は次のようになります。

insert all
  into domo_queries values ('select 
substr(to_char(max_data),1,4) as year,
substr(to_char(max_data),5,6) as month,
max_data
from dss_fin_user.acq_dashboard_src_load_success
where source = ''CHQ PeopleSoft FS''')
select * from dual;

最終的に、この insert all ステートメントには多くのintoが含まれるので、通常のinsertステートメントを実行しないのはこのためです。そこに無効なキャラクターが表示されていませんか? (ああ、そのコードは、SQL開発者ツールで実行すると正常に実行されます。)PreparedStatementのセミコロンを削除すると、ORA-00933: SQL command not properly endedエラーをスローします。

いずれにせよ、クエリを実行するためのコード(および上記の例の変数の値)は次のとおりです。

public ResultSet executeQuery(String connection, String query, QueryParameter... params) throws DataException, SQLException {
  // query at this point = "insert all
                          //into domo_queries values (?)
                          //select * from dual;"
  Connection conn = ConnectionPool.getInstance().get(connection);
  PreparedStatement pstmt = conn.prepareStatement(query);
  for (int i = 1; i <= params.length; i++) {
    QueryParameter param = params[i - 1];
    switch (param.getType()) { //The type in the example is QueryParameter.CLOB
      case QueryParameter.CLOB:
        Clob clob = CLOB.createTemporary(conn, false, Oracle.sql.CLOB.DURATION_SESSION);
        clob.setString(i, "'" + param.getValue() + "'");
        //the value of param.getValue() at this point is:
        /*
         * select 
         * substr(to_char(max_data),1,4) as year,
         * substr(to_char(max_data),5,6) as month,
         * max_data
         * from dss_fin_user.acq_dashboard_src_load_success
         * where source = ''CHQ PeopleSoft FS''
         */
        pstmt.setClob(i, clob);
        break;
      case QueryParameter.STRING:
        pstmt.setString(i, "'" + param.getValue() + "'");
        break;
    }
  }
  ResultSet rs = pstmt.executeQuery(); //Obviously, this is where the error is thrown
  conn.commit();
  ConnectionPool.getInstance().release(conn);
  return rs;
}

大きな時間を逃しているものはありますか?

64
kentcdodds

示したとおりに文字列リテラルを使用すると、問題は末尾の;文字にあります。 JDBC呼び出しのクエリ文字列にそれを含めることはできません。

単一の行のみを挿入するため、複数の行を挿入する場合でも、通常のINSERTで十分です。とにかくバッチステートメントを使用する方が効率的です。 INSERT ALLは必要ありません。さらに、一時的なCLOBなども必要ありません。メソッドを次のように単純化できます(パラメーターが正しいと仮定した場合)。

String query1 = "select substr(to_char(max_data),1,4) as year, " + 
  "substr(to_char(max_data),5,6) as month, max_data " +
  "from dss_fin_user.acq_dashboard_src_load_success " + 
  "where source = 'CHQ PeopleSoft FS'";

String query2 = ".....";

String sql = "insert into domo_queries (clob_column) values (?)";
PreparedStatement pstmt = con.prepareStatement(sql);
StringReader reader = new StringReader(query1);
pstmt.setCharacterStream(1, reader, query1.length());
pstmt.addBatch();

reader = new StringReader(query2);
pstmt.setCharacterStream(1, reader, query2.length());
pstmt.addBatch();

pstmt.executeBatch();   
con.commit();
156

私の頭の中で、文字列リテラルに「q」演算子を使用してみてください

何かのようなもの

insert all
  into domo_queries values (q'[select 
substr(to_char(max_data),1,4) as year,
substr(to_char(max_data),5,6) as month,
max_data
from dss_fin_user.acq_dashboard_src_load_success
where source = 'CHQ PeopleSoft FS']')
select * from dual;

述語の単一引用符はエスケープされず、文字列はq '[...]'の間にあることに注意してください。

6
user507484