We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c5905a commit d845381Copy full SHA for d845381
examples/demo.sql
@@ -257,4 +257,6 @@ COMMIT;
257
-- The DBA must grant access:
258
-- GRANT CHANGE NOTIFICATION TO myuser;
259
260
-create table cqntable (k number);
+BEGIN EXECUTE IMMEDIATE 'DROP TABLE cqntable'; EXCEPTION WHEN OTHERS THEN IF SQLCODE <> -942 THEN RAISE; END IF; END;
261
+/
262
+CREATE TABLE cqntable (k NUMBER);
0 commit comments