Quick Search:
 
 The Oracle QUOTA Keyword      [Return To Index] Jump to:  

Term: QUOTA

Definition:
In Oracle PL/SQL, the term QUOTA refers to a limit set on a user's allocated space in a tablespace.

Example Syntax:

ALTER USER <user_name> QUOTA <quota size> ON <tablespace name>;


Example Usage:

This example will allocate 50 megabytes to the user "bob":

ALTER USER bob QUOTA 50M ON tspace_1;


This example will allow unlimited space to the user "bob":

ALTER USER bob QUOTA unlimited ON tspace_1;


For more QUOTA examples and options, please view the page on Oracle Users & Schema Owners.


Related Links:

Related Code Snippets:
 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org