Quote:
|
Originally Posted by klata
ALTER TABLE "DB2ADMIN"."OPEN_SELECT1"
ADD CONSTRAINT "FK_FORMNO" FOREIGN KEY ("FORMNO")
REFERENCES "DB2ADMIN"."COLL_GEN" ("FORMNO")
ON DELETE NO ACTION
ON UPDATE NO ACTION
ENFORCED ENABLE QUERY OPTIMIZATION;
|
Hi,
"Enforced enable query optimization" is not supported in v7. Why don't you use just:
Quote:
ALTER TABLE "DB2ADMIN"."OPEN_SELECT1"
ADD CONSTRAINT "FK_FORMNO" FOREIGN KEY ("FORMNO")
REFERENCES "DB2ADMIN"."COLL_GEN" ("FORMNO")
ON DELETE NO ACTION
ON UPDATE NO ACTION
|
I don't think this should be a reason for migration to newer version. This "enforced" statement is just performance string. There are a couple of other thinks that is interesting in v8 and v9 to migrate.
Hope this helps,
Grofaty