Reputation: 8229
Is there common approach to translate .hdbtable
file to pure SQL create table
statement?
Upvotes: 1
Views: 937
Reputation: 63
As hdbtable uses the same type names as the the CREATE/ALTER TABLE statements you could write an hdbtable->sql-ddl compiler that could run completely without HANA. Just keep in mind that the identifiers in hdbtable definitions will be rendered as quoted identifiers if the hdbtable runtime inside HANA computes the definitions.
Upvotes: 0
Reputation: 87
You mean translate a HDB Table to pure SQL statement? If this, you can open the table,and click 'Export SQL' button.
Upvotes: 1