Hi,

> is it possible in H2 to show the structure (maybe in SQL) of a given
> object, but without seeing or exporting the structure of all the DB
> (script nodata) ?

The 'standard' was is to use the information_schema tables.

> Or a dedicated command, like SHOW ... as over.

Actually this is supported, but not documented so far. I will add the
following documentation:

SHOW { SCHEMAS | TABLES [FROM schemaName] |
COLUMNS FROM tableName [FROM schemaName] }

Lists the schemas, tables, or the columns of a table.

Examples:
SHOW SCHEMAS;
SHOW TABLES;
SHOW COLUMN FROM TEST;

Regards,
Thomas

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to