SQL Statements and Extensions for the Salesforce Driver : Drop View

Drop View
Purpose
The Drop View statement drops a view.
Syntax
DROP VIEW view_name [IF EXISTS] [RESTRICT | CASCADE]
where:
view_name
Specifies the name of a view.
IF EXISTS
Specifies that an error is not to be returned if the view does not exist.
RESTRICT
Is in effect by default, meaning that the drop fails if any other view refers to this view.
CASCADE
Silently drops all dependent views.

© 2013 Progress Software Corporation and/or its subsidiaries or affiliates.