Differences Between CREATE PROCEDURE and REPLACE PROCEDURE - Advanced SQL Engine - Teradata Database

SQL Data Definition Language Detailed Topics

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
jpx1556733107962.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1184
lifecycle
previous
Product Category
Teradata Vantage™
You can create or replace an external procedure using the same syntax except for the keywords CREATE and REPLACE.
  • If you specify CREATE, the procedure must not exist.
  • If you specify REPLACE, you can either create a new procedure or replace an existing procedure.

When you replace an existing external procedure, the replaced procedure does not retain the EXECUTE NOT PROTECTED attribute if one had previously been set using the ALTER PROCEDURE statement (see ALTER PROCEDURE (External Form)).

The advantage to using REPLACE is that you can avoid having to grant the EXECUTE privilege again to all users who already had that privilege on the procedure.