Usage - Advanced SQL Engine - Teradata Database

SQL Fundamentals

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-24
dita:mapPath
zwv1557098532464.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1141
lifecycle
previous
Product Category
Teradata Vantageâ„¢

To create and use an SQL UDF, follow these steps:

  1. Use CREATE FUNCTION or REPLACE FUNCTION to define the UDF.
  2. Use GRANT to grant privileges to users who are authorized to use the UDF.
  3. Call the function.

Here is a synopsis of the steps you take to develop, compile, install, and use an external UDF:

  1. Write, test, and debug the C, C++, or Javacode for the UDF.
  2. If you are using Java, place the class or classes for the UDF in an archive file (JAR or ZIP) and call the SQLJ.INSTALL_JAR external stored procedure to register the archive file with the database.
  3. Use CREATE FUNCTION or REPLACE FUNCTION to create a database object for the UDF.
  4. Use GRANT to grant privileges to users who are authorized to use the UDF.
  5. Call the function.