Catalog.DropGlobalTempView(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.