Hello,
We are required to perform a silent install for a Oracle 12c database using dbca, however, we must supply the initialization parameter event="10298 trace name context forever, level 32" to resolve BUG-5146667 which is preventing the creation of databases on our NAS. We can supply the initialization parameter via the GUI using the initialization parameter list, however, the response file uses a comma separated list of name=<value> pairs for initialization values. Since our <value> has a comma in it, we're having problems trying to get Oracle to accept the command. There doesn't seem to be any way to escape the comma in our <value> string. Anyone have insight one how to pass an initialization parameter to dbca in silent mode which contains a comma?
Example: INITPARAMS = "event=10298 trace name context forever, level 32"
- Using single quotes or escaped double quotes after the '=' sign didn't resolve the issue.
Thanks.