DROP DATA LOADER
DROP DATA LOADER drops a data loader and its associated monitoring table.
DROP DATA LOADER drops a data loader created with CREATE DATA LOADER. It also drops the associated monitoring table.
If the data loader was created with a trigger, you must disable it before dropping it. Call ALTER DATA LOADER with the DISABLE option.
Syntax
DROP DATA LOADER [ IF EXISTS ] [schema.]name
Arguments
IF EXISTS
- Do not report an error if the data loader does not exist. Use this clause in SQL scripts to avoid errors on dropping non-existent objects before attempting to create them.
schema
- Schema containing the data loader. The default schema is
public
. name
- Name of the data loader.
Privileges
Non-superuser: owner or DROP privilege on the data loader.