in reply to Re^2: Dancer + SQL::Translator
in thread Dancer + SQL::Translator
It is the double bracketed values in the timestamp definition.
CREATE TABLE "ACCOUNT" ( "ACCOUNT_ID" number(38) NOT NULL, "DATE_TIME_UTC" timestamp(6)(11), "CURRENCY_ID" number(38) NOT NULL, "NAME" varchar2(128) NOT NULL, "BALANCE" number(14) NOT NULL, "ACCOUNT_TYPE_ID" number(38) NOT NULL, "CREATED_BY_USER" varchar2(128), "CREATED_DATE_TIME_UTC" timestamp(6)(11), "MODIFIED_BY_USER" varchar2(128), "MODIFIED_DATE_TIME_UTC" timestamp(6)(11) );
When the table was originally created those columns were only timestamps with no precision.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Dancer + SQL::Translator
by mje (Curate) on Mar 28, 2012 at 16:18 UTC |