UDTMETHOD Privilege - Analytics Database - Teradata Vantage

SQL Data Control Language

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-03-29
dita:mapPath
sgu1628111251052.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
dvv1472243528022
lifecycle
latest
Product Category
Teradata Vantageā„¢

The UDTMETHOD privilege allows a user to use any UDT and its methods without any restrictions. Its functionally includes both of the following privileges:

  • UDTUSAGE on all UDTs in the SYSUDTLIB database.
  • UDTTYPE on the SYSUDTLIB database.

A user with the UDTMETHOD privilege can perform these statements and operations:

  • CREATE TYPE with or without specifying method signatures.
  • DROP TYPE.
  • ALTER TYPE with or without adding or dropping method signatures.
  • CREATE ORDERING and DROP ORDERING.
  • CREATE CAST and DROP CAST.
  • CREATE TRANSFORM and DROP TRANSFORM.
  • CREATE TABLE with UDT columns.
  • Reference any UDT in an SQL statement, UDF, or procedure.
  • Run all methods.
  • CREATE METHOD and ALTER METHOD and REPLACE METHOD.

The database_name in the ON clause must be SYSUDTLIB.

UDTMETHOD is not an automatically granted privilege. A user must be granted it explicitly, or acquire it through ALL PRIVILEGES or through a role. Users who are granted UDTMETHOD WITH GRANT OPTION can then grant others the UDTUSAGE, UDTTYPE, or UDTMETHOD privilege, optionally with the WITH GRANT option.

UDTMETHOD is represented by the code UM in the AccessRight column of the DBC.AccessRights table.

The following GRANT requests grant the following respective privileges:

  • UDTMETHOD on SYSUDTLIB to the user named user_DBA with grant option.
  • UDTMETHOD on SYSUDTLIB to the role named developer_role.
    GRANT UDTMETHOD
         ON SYSUDTLIB
         TO user_DBA WITH GRANT OPTION;
         
         GRANT UDTMETHOD
         ON SYSUDTLIB
         TO developer_role;