I/O - Advanced SQL Engine - Teradata Database

SQL External Routine Programming

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
qwr1571437338192.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1147
lifecycle
previous
Product Category
Teradata Vantage™

External stored procedures cannot do standard I/O or network I/O.

Under the following conditions, external stored procedures can do I/O or otherwise interface with the operating system such that the operating system retains resources such as file handles or object handles.

IF the CREATE PROCEDURE or REPLACE PROCEDURE statement … THEN the external stored procedure …
specifies the EXTERNAL SECURITY clause executes as a separate process under the authorization of a specific native operating system user established by a CREATE AUTHORIZATION or REPLACE AUTHORIZATION statement.

The external stored procedure can access the system resources for which the user has privileges.

The procedure must release opened resources (close handles) before it completes.

omits the EXTERNAL SECURITY clause can do I/O if the external stored procedure runs in protected execution mode.

In protected execution mode, the external stored procedure runs as a separate process under 'tdatuser', a local operating system user that the Teradata Database installation process creates.

The external stored procedure can access the system resources for which tdatuser has privileges.

The procedure must release opened resources (close handles) before it completes.

For more information on protected execution mode, see Protected Mode Execution.