DROP TABLE OWN_GTEM.USERROLETYPES CASCADE CONSTRAINTS;
cascade constraints
Deletes all foreign keys that reference the table to be dropped, then drops the table.
ALTER TABLE OWN_GTEM.USERROLETYPES DROP PRIMARY KEY CASCADE;
DROP PRIMARY KEY CASCADE
Dropping constraints generally requires knowing their names (only in the special case of primary or unique key constraints can you drop them without specifying their names). Thus, it is always a good idea to name all your constraints.
COMMENT ON TABLE OWN_GTEM.USERSEARCHVALUES IS 'User Search Selections For Reload on Dashboard pages';
COMMENT ON TABLE
The comment statement allows to store some comments about tables, views or columns in the data dictionary.
CREATE INDEX OWN_GTEM.PK_USERSEARCHVALUES ON OWN_GTEM.USERSEARCHVALUES(USERID, DASHBOARD)
LOGGING
TABLESPACE
GTEM_D
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE(
INITIAL 64K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
)
NOPARALLEL;
CREATE INDEX
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment