Can anyone point me to the right syntax to use in order to create a table only if it does not currently exist in the database?
I\'m currently programming a Java GUI
@Archie I would like to answer your question. @Piyas De Sorry for stealing your code :).
Just a little update of @Piyas De answer.
BEGIN BEGIN EXECUTE IMMEDIATE '<>'; EXCEPTION WHEN OTHERS THEN IF SQLCODE == -955 THEN RAISE; END IF; END; END;