25.6.16.22 The ndbinfo dictionary_columns Table (original) (raw)

25.6.16.22 The ndbinfo dictionary_columns Table

The table provides NDB dictionary information about columns of NDB tables.dictionary_columns has the columns listed here (with brief descriptions):

You can obtain information about all of the columns in a given table by joining dictionary_columns with thedictionary_tables table, like this:

SELECT dc.*
  FROM dictionary_columns dc
JOIN dictionary_tables dt
  ON dc.table_id=dt.table_id
WHERE dt.table_name='t1'
  AND dt.database_name='mydb';

The dictionary_columns table was added in NDB 8.0.29.

Note

Blob columns are not shown in this table. This is a known issue.