Granting Users Access to Compute Groups - Teradata VantageCloud Lake

Lake - Database Reference

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2025-11-21
dita:mapPath
ohi1683672393549.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
ohi1683672393549

To use compute cluster resources, a user is associated with a compute group.

A user can be created with a default compute cluster association or an existing user can be modified to have a compute group.

Example: Create a New User with a Compute Group

create user user_name as 
password = user_password
perm=1e8
default database = user_name
COMPUTE GROUP = compute_group_name;

And grant the user access privilege to the group:

GRANT COMPUTE GROUP ON compute_group_name TO user_name

Example: Modify a User to Allow Access to a Compute Group

modify user user_name as COMPUTE GROUP = compute_group_name;

And grant the user access privilege to the group:

GRANT COMPUTE GROUP ON compute_group_name TO user_name