Search code examples
sqlignite

How to extract the SQL Create statement from ignite


Using Apache Ignite, is it possible to extract the CREATE statement used to create the table? You can do this in MySQL with the SHOW CREATE TABLE x command for example.


Solution

  • I don't think dumping DML (database structure) is possible currently. Especially since CREATE TABLE is only one way of making tables in Ignite out of three.

    However, you can query tables, schemas and indexes via JDBC metadata introspection feature.