Share via


Catalog.DropGlobalTempView(String) Method

Definition

Drops the global temporary view with the given view name in the catalog.

You can create global temporary views by taking a DataFrame and calling DataFrame.CreateOrReplaceGlobalTempView.

public bool DropGlobalTempView (string viewName);
member this.DropGlobalTempView : string -> bool
Public Function DropGlobalTempView (viewName As String) As Boolean

Parameters

viewName
String

The unqualified name of the temporary view to be dropped.

Returns

bool, true if the view was dropped and false if it was not dropped.

Applies to