Is there any way to edit the code generated by the tool hbm2ddl.auto from Hibernate? I ask this because I would like to insert the words ORGANIZE BY ROW
in the CREATE TABLE
statements generated by hibernate tool.
Asked
Active
Viewed 63 times
1 Answers
0
Indirect method - u can write some code to have Hibernate write out the DDL's in a file (http://jandrewthompson.blogspot.in/2009/10/how-to-generate-ddl-scripts-from.html) . You then edit the file by hand and add the 'organize_by_row' clause to the create table DDL. Now run this file on column oriented dashDB/DB2

Mario Briggs
- 56
- 4
-
Thanks Mario. This will help so much. :D – Islon Apr 07 '16 at 23:48