This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for the
current
version, or one of the other supported versions listed above instead.
DEALLOCATE DESCRIPTOR
Name
DEALLOCATE DESCRIPTOR -- deallocate an SQL descriptor area
Synopsis
DEALLOCATE DESCRIPTOR name
Description
DEALLOCATE DESCRIPTOR deallocates a named SQL descriptor area.
Parameters
- name
-
The name of the descriptor which is going to be deallocated. It is case sensitive. This can be an SQL identifier or a host variable.
Examples
EXEC SQL DEALLOCATE DESCRIPTOR mydesc;
Compatibility
DEALLOCATE DESCRIPTOR is specified in the SQL standard.