Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Object TypePackaging FolderArchived?Notes
CREATE/ALTER/DROP DATABASE LINKsql_directYes
CREATE/ALTER/DROP FUNCTIONfunctionNo

Use CREATE OR REPLACE rather than CREATE alone. 

Each function must be in its own file and end with a '/'.

CREATE/ALTER/DROP INDEXddl, ddl_direct, sql_directYes
CREATE/ALTER/DROP QUEUEsql_directYes
CREATE/ALTER/DROP SEQUENCEddl, ddl_direct, sql_directYes
CREATE/ALTER/DROP PUBLIC SYNONYMsql_directYesAlternatively, use Datical Auto-Synonyms
CREATE/ALTER/DROP PRIVATE SYNONYMddl, ddl_direct, sql_directYesAlternatively, use Datical Auto-Synonyms

CREATE/ALTER/DROP TABLE

ddl, ddl_directsql_directYes
CREATE/ALTER/DROP GLOBAL TEMPORARY TABLEddl, ddl_direct, sql_directYes
CREATE/ALTER/DROP MATERIALIZED VIEWsql_directYes
CREATE/ALTER/DROP PACKAGEpackageNo

Use CREATE OR REPLACE rather than CREATE alone. 

Each package must be in its own file and end with a '/'.

CREATE/ALTER/DROP PACKAGE BODYpackagebodyNo

Use CREATE OR REPLACE rather than CREATE alone. 

Each package body must be in its own file and end with a '/'.

CREATE/ALTER/DROP PROCEDUREprocedureNo

Use CREATE OR REPLACE rather than CREATE alone. 

Each procedure must be in its own file and end with a '/'.

CREATE/ALTER/DROP TRIGGER

trigger

No

Use CREATE OR REPLACE rather than CREATE alone. 

Each trigger must be in its own file and end with a '/'.

CREATE/ALTER/DROP TYPEsql_directYesEach type must be in its own file and end with a '/'.
CREATE/ALTER/DROP VIEW

view

No

Use CREATE OR REPLACE rather than CREATE alone. 

Each view must be in its own file and end with a '/'.

CREATE/ALTER/DROP VIEW INDEXddlddl_directsql_directYes
CREATE/ALTER/DROP CURSORsql_directYes
CREATE/ALTER/DROP DIRECTORYsql_directYes
RENAME <DB_OBJECT>sql_directYes

...