I am getting this below exception-
java.sql.SQLException: ORA-00904: : invalid identifier ORA-06512: at line 1
Below is the query that I am try
Change
"v_sql VARCHAR2(1000) := 'create table " +DATABASE_TABLE + "(" + "(ID number(10,0), " +
into
"v_sql VARCHAR2(1000) := 'create table " +DATABASE_TABLE + "(ID number(10,0), " +
and it is working. You just had one incorrect bracket.