We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Executing by hand the Oracle 2.9 to 3.0 upgrade script we have found these errors:
In "CREATE TABLE cmPageDeliveryMetaData" there is a syntax error on
lastModifiedTimeout date default -1 NOT NULL</code)
The "-1" is not a valid date. We just remove the "default -1" (is it ok?) Starting the app it complains with ORA errors. The script seems to have left two new required fields missing: In table CMCATEGORY needs DISPLAYNAME ALTER TABLE "CMCATEGORY" ADD ( "DISPLAYNAME" VARCHAR2(4000)) In table CMSINOVER needs FORCEPROTOCOLCHANGE ALTER TABLE "INFOG3UPNA"."CMSINOVER" ADD ( "FORCEPROTOCOLCHANGE" NUMBER DEFAULT 0 NOT NULL )
The "-1" is not a valid date. We just remove the "default -1" (is it ok?)
Starting the app it complains with ORA errors. The script seems to have left two new required fields missing:
In table CMCATEGORY needs DISPLAYNAME
ALTER TABLE "CMCATEGORY" ADD ( "DISPLAYNAME" VARCHAR2(4000))
In table CMSINOVER needs FORCEPROTOCOLCHANGE
ALTER TABLE "INFOG3UPNA"."CMSINOVER" ADD ( "FORCEPROTOCOLCHANGE" NUMBER DEFAULT 0 NOT NULL )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Executing by hand the Oracle 2.9 to 3.0 upgrade script we have found these errors:
In "CREATE TABLE cmPageDeliveryMetaData" there is a syntax error on
lastModifiedTimeout date default -1 NOT NULL</code)
The "-1" is not a valid date. We just remove the "default -1" (is it ok?)
Starting the app it complains with ORA errors. The script seems to have left two new required fields missing:
In table CMCATEGORY needs DISPLAYNAME
ALTER TABLE "CMCATEGORY" ADD ( "DISPLAYNAME" VARCHAR2(4000))
In table CMSINOVER needs FORCEPROTOCOLCHANGE
ALTER TABLE "INFOG3UPNA"."CMSINOVER" ADD ( "FORCEPROTOCOLCHANGE" NUMBER DEFAULT 0 NOT NULL )
The text was updated successfully, but these errors were encountered: