LIST_MATRICES

This procedure lists all matrices in the connected database.

Usage

The LIST_MATRICES stored procedure has the following syntax:
LIST_MATRICES()
Returns
NVARCHAR(ANY) a linefeed-separated (and terminated) string of matrix names.

Details

This procedure reruns a linefeed-separated string of matrix names.

Examples

CALL nzm..SHAPE('0', 3, 3, 'A');
CALL nzm..SHAPE('1', 3, 3, 'B');
CALL nzm..LIST_MATRICES();
CALL nzm..DELETE_MATRIX('A');
CALL nzm..DELETE_MATRIX('B');

 SHAPE
-------
 t
(1 row)

 SHAPE
-------
 t
(1 row)

 LIST_MATRICES
---------------
 AB
(1 row)

 DELETE_MATRIX
---------------
 t
(1 row)

 DELETE_MATRIX
---------------
 t
(1 row)