I am trying to create Oracle PL/SQL procedures and execute them via Oracle JDBC (thin driver). Here is the full PL/SQL script:

begin
for i in (select owner, constraint_name, table_name from all_constraints where owner = 'SCHEMA' and status = 'ENABLED') LOOP
execute immediate 'alter table SCHEMA.'||i.table_name||' disable constraint SCHEMA.'||i.constraint_name||'';
end loop;
end;
/
begin
for i in (select table_name from all_tables where owner = 'SCHEMA') LOOP
execute immediate 'truncate table SCHEMA.'||i.table_name||'';
end loop;
end;
/
begin
for i in (select owner, constraint_name, table_name from all_constraints where owner = 'SCHEMA' and status = 'DISABLED') LOOP
execute immediate 'alter table SCHEMA.'||i.table_name||' enable constraint SCHEMA.'||i.constraint_name||'';
end loop;
end;
/

In java I am splitting on '/' so each begin end block is executed in a separate statement. The java code to execute the statement is:

CallableStatement c = dbc.getConnection().prepareCall(sqlStatement);
c.executeUpdate();

I'm receiving the following error:

java.sql.SQLSyntaxErrorException: ORA-00933: SQL command not properly ended
ORA-06512: at line 3

How do I format this and execute the PL/SQL in JDBC?

Updated: To clarify, all three statements are executed without the '/' delimiter that is split on.

Updated: The oracle server is the following version: Oracle Database 11g Release 11.2.0.1.0 - 64bit Production

link|improve this question

80% accept rate
1  
I don't see any problem with the posted code. Just make sure that your SQL statement ends with a semicolon. So the semicolon is required, the slash must not be present. – Codo Jul 18 '11 at 14:10
Check Codo's comment: "the slash must not be present" is the key phrase. – Olaf Jul 18 '11 at 14:27
I have updated the question to indicate that the '/' is indeed not present when I execute the update on the CallableStatement. – tonysbd Jul 18 '11 at 14:34
@Codo The Sql statement shouldn't ends with a semicolon. This is a common error in a dynamic sql string. A SQL statement does not need a terminator character, maybe you're confusing with a SQL*PLus SQL TERMINATOR environment variable! – zep Jul 18 '11 at 15:19
@zep: It's a PL/SQL BEGIN/END block. It might work without the semicolon (I haven't tried that), but it certainly works with it. I agree that for DML statements, it would be a mistake. – Codo Jul 18 '11 at 15:45
show 4 more comments
feedback

1 Answer

up vote 2 down vote accepted

In the "enable /diable" constraint you shouldn't add the schema name (your'SCHEMA).

From the manual: ALTER TABLE

Your example:

begin
    for i in (select owner, constraint_name, table_name
              from   all_constraints
              where  owner = 'SCHEMA'
              and    status = 'ENABLED')
    loop
        execute immediate 'alter table SCHEMA.' || i.table_name ||
                          ' disable constraint ' || i.constraint_name;
    end loop;
end;

Test Query

select ac.constraint_name, ac.table_name, ac.status, ac.owner
from   all_constraints ac
where  ac.owner = 'HR'
and    ac.constraint_name = 'EMP_SALARY_MIN'

Result

CONSTRAINT_NAME                TABLE_NAME                     STATUS   OWNER
------------------------------ ------------------------------ -------- --------------------------------------------------------------------------------
EMP_SALARY_MIN                 EMPLOYEES                      ENABLED  HR

Correct dynamic sql

begin
    execute immediate 'alter table HR.EMPLOYEES disable constraint EMP_SALARY_MIN';
end;

Previous query result

CONSTRAINT_NAME                TABLE_NAME                     STATUS   OWNER
------------------------------ ------------------------------ -------- --------------------------------------------------------------------------------
EMP_SALARY_MIN                 EMPLOYEES                      DISABLED HR
link|improve this answer
I recognized this as an issue after reading up on oracle constraints. After the SQL was corrected per zep's answer I still got the error. Turns out my current user required the "Create Any Index" and "Drop Any Index" privileges in order to successfully disable/enable foreign and primary keys. Awarding answer to zep. – tonysbd Jul 18 '11 at 16:02
feedback

Your Answer

 
or
required, but never shown

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