Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/oracle/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Oracle ORA-00922在尝试将表放入内存时_Oracle_Oracle12c_In Memory Database - Fatal编程技术网

Oracle ORA-00922在尝试将表放入内存时

Oracle ORA-00922在尝试将表放入内存时,oracle,oracle12c,in-memory-database,Oracle,Oracle12c,In Memory Database,我有两个环境,Oracle 12.1.0.2.0-64位,它们基本相同。 在其中一个中,我可以成功地将所需的表放入内存中,但在另一个中,我得到了“ORA-00922:缺少或无效选项”。 我正在执行的命令是 ALTER TABLE USER_ROLE_T INMEMORY PRIORITY MEDIUM; 这两种环境都配置了INMEMORY参数,并且SGA_目标配置为“0” 原因是什么?问题是由于参数值不正确引起的。 当服务器从Oracle 11g升级到Oracle 12c时,COMPATI

我有两个环境,Oracle 12.1.0.2.0-64位,它们基本相同。 在其中一个中,我可以成功地将所需的表放入内存中,但在另一个中,我得到了“ORA-00922:缺少或无效选项”。 我正在执行的命令是

ALTER TABLE USER_ROLE_T INMEMORY PRIORITY MEDIUM;  
这两种环境都配置了INMEMORY参数,并且SGA_目标配置为“0”


原因是什么?

问题是由于参数值不正确引起的。 当服务器从Oracle 11g升级到Oracle 12c时,COMPATIBLE参数设置为Oracle 11.2.4。 一旦我将参数设置为正确的Oracle版本,问题就解决了