ORA-24086: cannot create a 8.0 compatible string queue
Cause: An attempt was made to create a 8.0 compatible queue table and enable a feature that is supported only on 8.1 style queue tables
Action: This feature is not supported
ORA-24086 是Oracle数据库中发生的一个错误码,指出无法创建兼容 8.0 版本的字符串队列(String Queue)。
1. 尝试在比ORACLE 8.X更低版本的数据库中创建一个兼容 8.0 版本的字符串队列;
2. 在ORACLE 8.X 以下的数据库中,尝试使用CREATE,PL/SQL和SAVE函数来创建兼容8.0的字符串队列。
1. 仔细检查数据库版本,确保处于正确的版本,或者使用正确的数据库函数;
2. 在ORACLE 8.X版本以上的数据库中,使用dbms_aq package 来创建队列。