Privileges Needed for Native Object Store | NOS | Teradata Vantage - Setting Access Privileges - Advanced SQL Engine - Teradata Database

Teradata Vantage™ - Native Object Store Getting Started Guide

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2022-06-22
dita:mapPath
gmv1596851589343.ditamap
dita:ditavalPath
wrg1590696035526.ditaval
dita:id
B035-1214
lifecycle
previous
Product Category
Software
Teradata Vantage

To access data in the Advanced SQL Engine, the user must have certain privileges.

  1. Log in as an administrative user and assign privileges depending on the operations the user is performing.
    Privilege Description Command
    CREATE TABLE Allows user to create tables and foreign tables in the database GRANT CREATE TABLE on user to user;
    EXECUTE FUNCTION on READ_NOS Provides access to READ_NOS GRANT EXECUTE FUNCTION on TD_SYSFNLIB.READ_NOS to user;
    EXECUTE FUNCTION on WRITE_NOS Provides access to WRITE_NOS GRANT EXECUTE FUNCTION on TD_SYSFNLIB.WRITE_NOS to user;
    CREATE AUTHORIZATION Allows user to create an authorization object to make an association between the database user and operating system user.

    See Controlling Foreign Table Access with an AUTHORIZATION Object.

    GRANT CREATE AUTHORIZATION on user to user;

    For example, issue the grants your user needs. Your users may only need a subset of the following grants, depending on the access they require:

    GRANT CREATE TABLE on nos_usr to nos_usr;
    GRANT EXECUTE FUNCTION on TD_SYSFNLIB.READ_NOS to nos_usr;
    GRANT EXECUTE FUNCTION on TD_SYSFNLIB.WRITE_NOS to nos_usr;
    GRANT CREATE AUTHORIZATION on nos_usr to nos_usr;