[Home] [Help]
[Dependency Information]
| Object Name: | DBA_TS_QUOTAS |
|---|---|
| Object Type: | VIEW |
| Owner: | SYS |
| Subobject Name: | |
| Status: | VALID |
Tablespace quotas for all users
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| TABLESPACE_NAME | VARCHAR2 | (30) | Yes | Tablespace name |
| USERNAME | VARCHAR2 | (128) | Yes | User with resource rights on the tablespace |
| BYTES | NUMBER | Number of bytes charged to the user | ||
| MAX_BYTES | NUMBER | User's quota in bytes. NULL if no limit | ||
| BLOCKS | NUMBER | Number of ORACLE blocks charged to the user | ||
| MAX_BLOCKS | NUMBER | User's quota in ORACLE blocks. NULL if no limit | ||
| DROPPED | VARCHAR2 | (3) | Whether the tablespace has been dropped |
Cut, paste (and edit) the following text to query this object:
SELECT TABLESPACE_NAME
, USERNAME
, BYTES
, MAX_BYTES
, BLOCKS
, MAX_BLOCKS
, DROPPED
FROM SYS.DBA_TS_QUOTAS;
SYS
DBMS_SPACE_ADMIN
- show dependent code
TBS_SPACE_USAGE
TS$
USER$
PUBLIC
DBA_TS_QUOTAS
SYS
DBMS_DBFS_SFS_ADMIN
- show dependent code
DBMS_SPACE
- show dependent code
|
|
|
|