existsCatalog
Syntax
existsCatalog(catalog)
Details
Check whether the specified catalog exists.
Parameters
catalog is a string specifying the catalog name.
Returns
A Boolean scalar.
Examples
use CATALOG cat1;
existsCatalog("cat1") // Output: true
existsCatalog("cat2") // Output: false
