Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
alter user <username> quota <n M | UNLIMITED> on data1;
(for example)
SQL> alter user fred quota 10m on data1;
User altered.
create table x (y number) tablespace data1;
Table created.
select * from dba_ts_quotas;
TABLESPACE USERNAME BYTES MAX_BYTES BLOCKS MAX_BLOCKS
---------- ---------- ---------- ---------- ---------- ----------
DATA1 DHUNT 5767168 -1 704 -1
SYSTEM DONTDROP 32768 -1 4 -1
DATA1 TESTNEW 4653056 -1 568 -1
DATA1 TEST 28573696 -1 3488 -1
DATA2 TEST 0 524288000 0 64000
select * from user_ts_quotas;
TABLESPACE BYTES MAX_BYTES BLOCKS MAX_BLOCKS
---------- ---------- ---------- ---------- ----------
DATA1 28573696 -1 3488 -1
DATA2 0 524288000 0 64000