Snippet Name: USERS: Grant tablespace access
Description: Use this clause to assign or reassign a tablespace or tablespace group for the user's temporary segments.
Specify tablespace to indicate the user's temporary tablespace.
Specify tablespace_group_name to indicate that the user can save temporary segments in any tablespace in the tablespace group specified by tablespace_group_name.
Restriction on User Temporary Tablespace:
Any individual tablespace you assign or reassign as the user's temporary tablespace must be a temporary tablespace and must have a standard block size.
Also see: » USER: connection information
» USER: User Information 2
» USER idle time
» USER Information
» USER active connected users
» USER memory use
» USER: Connected Users
» USER: drop user
» USER: misc queries and commands
» USER system authentication
» USER lock account
» USER password expiration
» USER profile
» USER tablespace quota
» USER temp tablespace
» USER tablespace
» USER password
» USERS: view specific user info
» USERS: view currently connected users
» USERS: view all active users
» USERS: Drop users
» USERS: Lock and Unlock accounts
» USERS: Proxy Users
» USERS: Alter a user
» USERS: CREATE USER w/ authentication
» USERS: Creating Users
» CREATE USER
» Drop User example
» Create User example
» Create User
Comment: (none)
Language: PL/SQL
Highlight Mode: PLSQL
Last Modified: March 09th, 2009
|
ALTER USER <user_name>
QUOTA <quota_amount> ON <tablespace_name>;
-- for example:
ALTER USER mike
QUOTA 500K ON test_table; |