Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on January 26, 2019 2:15AM
Likes: 0
Replies: 2
I'm trying to create a SQL script that has two statements: 1) Calling procedure that drops a table if it exists 2) Creating a new table
I'm getting " [Error 3932] [SQLState 25000] Only an ET or null statement is legal after a DDL Statement." which suggests that DSS is submitting the statements as Multi-Statement Request rather than as Single-Statement Request. I am able to submit the query in SQL Assistant without error
I tried including the DSS comment string to force splitting but I still get the error.
I also tried setting TMODE = TERA advanced JDBC properties for the connection profile.
CALL ssd_pnr.conditional_drop('db_name', 'tbl_name', outmsg);
-- DKU_END_STATEMENT
CREATE
SET
TABLE db_name.tbl_name,
NO FALLBACK,
NO BEFORE JOURNAL,
NO
AFTER
JOURNAL AS (
SELECT
dw_key
FROM
db_name.src_tbl_name
) WITH DATA PRIMARY INDEX (dw_key);