EsbClearAliases

Description

EsbClearAliases() permanently removes all alias tables for the active database.

Syntax
EsbClearAliases (hCtx)
ByVal hCtx As Long

Parameters

hCtxEssbase VB API context handle.

Return Value

None.

Notes

Access

This function requires the caller to have access to the database, and to have selected it as their active database using EsbSetActive().

Example

Declare Function EsbClearAliases Lib "ESBAPIW" (ByVal hCtx As Long) As Long

Sub ESB_ClearAliases ()
   Dim sts As Long

   '***************
   ' Remove Aliases
   '***************
   sts = EsbClearAliases (hCtx)
End Sub

See Also

EsbListAliases()
EsbRemoveAlias()
EsbSetAlias()
EsbListConnections()
EsbSetActive()