_v_library
The _v_library
view shows all of the shared libraries that have been
installed in the Netezza database by using the CREATE LIBRARY command.
If you're using nzLua you don't need to issue the create library command. It's automatically launched during the installation process as well as by the nzl CLI program.
Column | Description |
---|---|
LIBRARY | The name of the shared library. The nzLua library is named
LIBNZLUA_<version> . For example: LIBNZLUA_2_0_0 . The nzLua code
libraries (see nzLua code libraries) are named in the form
NZLUALIB_<name> . |
DEPENDENCIES | The libraries that a library depends on. The LIBNZLUA library depends on the
LIBGMP library. |
AUTOMATICLOAD | A true/false indicator of whether the library can be automatically loaded by the Netezza database. The nzLua code libraries always report false for this column. |
select *
from _v_library;