DROP SOURCE
Drops a User Defined Load Source function from the Vertica catalog.
	Drops a User Defined Load Source function from the Vertica catalog.
Syntax
DROP SOURCE [[database.]schema.]source()
Parameters
- [- database- .]- schema
- Database and schema. The default schema is - public. If you specify a database, it must be the current database.
- source- ()
- Specifies the source function to drop. You must append empty parentheses to the function name.
Privileges
Non-superuser:
- 
Owner or DROP privilege 
- 
USAGE privilege on schema 
Examples
The following command drops the curl source function:
=> DROP SOURCE curl();
DROP SOURCE