bsiamionau
bsiamionau

Reputation: 8229

Convert hdbtable to SQL

Is there common approach to translate .hdbtable file to pure SQL create table statement?

Upvotes: 1

Views: 937

Answers (2)

roborob
roborob

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

jasmine_007
jasmine_007

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

Related Questions