DROP ANALYTICAL VIEW

Dropping an analytical view in Arcadia Engine removes it. This may affect the performance of queries and dashboards that rely on these analytical views.

This topic contains the following sections:

Syntax

DROP ANALYTICAL VIEW [IF EXISTS] analytical_view_name;

Parameter

analytical_view_name
The name of the target analytical view

Notes

IF EXISTS

This optional clause makes the statement succeed regardless of the existence of the analytical view.

Example

Dropping a named analytical view
drop analytical view events_aview;