The database and table layout of the Mireo SpaceTime Cluster (as visible from the MSQL query language) can be inspected using the DESCRIBE
statement.
There are two variants of the DESCRIBE
statement:
DESCRIBE DATABASE
The DESCRIBE DATABASE
statement displays a list of all the tables and table-like entities present in all namespaces comprising the SpaceTime Cluster.
DESCRIBE DATABASE;
DESCRIBE TABLE tblName
The DESCRIBE TABLE
statement returns a description of all the columns of the specified table: their names, data types and nullability, together with any extra information available for each column (such as whether a given column value is an ACL key for the given table).
DESCRIBE TABLE st.segment;