文档解释 ORA-31206: DBMS_LDAP: PL/sql – Invalid LDAP search scope. Cause: There has been an error in the DBMS_LDAP sea
ORA-31206: DBMS_LDAP: PL/sql – Invalid LDAP search scope.
Cause: There has been an error in the DBMS_LDAP search operation.
Action: Please check the search scope that you use for search, or report the error number and description to oracle Support.
错误ORA-31206发生,是因为不受支持的搜索范围在进行LDAP搜索时使用。
ORA-31206: DBMS_LDAP: PL/SQL 错误 – 无效的LDAP搜索范围。
案例:在执行以下代码时发生ORA-31206错误
BEGIN
DBMS_LDAP.SEARCH_S(ld => ld_session, base => ‘DC=example,DC=com’,
filter => ‘(objectClass=*)’, scope => 99);
END;
1)检查是否将正确的参数传递给scope参数。scope可以是以下数字:
0 – BASE
1 – ONELEVEL
2 – SUBTREE
2)确保scope参数是在DBMS_LDAP.search_s函数调用中与正确的参数一起使用。
3)确保scope参数的值是在0,1或2之一。
--结束END--
本文标题: ORA-31206: DBMS_LDAP: PL/SQL – Invalid LDAP search scope. ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/528456.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0