Add more commands to cheatsheet.
This commit is contained in:
parent
7b40187ec3
commit
cf096d961b
@ -21,6 +21,19 @@ CREATE TABLESPACE tbs1
|
||||
DATAFILE 'tbs1.dbf'
|
||||
SIZE 1m
|
||||
AUTOEXTEND 20m;
|
||||
|
||||
CREATE TABLE table_name(
|
||||
...
|
||||
) TABLESPACE tablespace_name;
|
||||
|
||||
CREATE SEQUENCE schema_name.sequence_name
|
||||
[INCREMENT BY interval]
|
||||
[START WITH first_number]
|
||||
[MAXVALUE max_value | NOMAXVALUE]
|
||||
[MINVALUE min_value | NOMINVALUE]
|
||||
[CYCLE | NOCYCLE]
|
||||
[CACHE cache_size | NOCACHE]
|
||||
[ORDER | NOORDER];
|
||||
|
||||
CREATE PROFILE profile_name
|
||||
LIMIT { resource_parameters | password_parameters};
|
||||
|
Loading…
Reference in New Issue
Block a user