sa_external_library_unload system procedure

Unloads an external library.

Syntax
sa_external_library_unload( [ 'external-library' ] )
Arguments
  • external-library   Optionally use this LONG VARCHAR parameter to specify the name of a library to be unloaded. If no library is specified, all external libraries that are not in use are unloaded.

Remarks

If an external library is specified, but is in use or is not loaded, an error is returned. If no parameter is specified, an error is returned if no loaded external libraries are found.

Permissions

DBA authority required

Side effects

None

See also
Example

The following example unloads an external library called myextlib.dll:

CALL sa_external_library_unload( 'myextlib.dll' );

The following example unloads all libraries that are not currently in use:

CALL sa_external_library_unload();