This one works fine with hibernate's IDENTITY autogeneration:
CREATE TABLE AAA.BBB
(
ID BIGINT IDENTITY,
SITE VARCHAR(16),
);
This one (reverse-engineered by my RazorSQL db browser tool) results in an
exception:
CREATE TABLE AAA.BBB (
ID BIGINT DEFAULT (NEXT VALUE FOR
AAA.SYSTEM_SEQUENCE_66AF15AC_D4EC_4026_AD7B_D8DDA1EA6493) NOT NULL,
SITE VARCHAR(16),
PRIMARY KEY (ID)
);
My guess it's probably the tool's fault; but what is it missing?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---