How to debug ORA-01775: looping chain of synonyms?(如何调试 ORA-01775:同义词循环链?)
问题描述
我熟悉 ORA-01775 背后的问题:同义词循环链,但是否有任何调试技巧,或者我是否只需要创建或替换"我的方式来解决它?
I'm familiar with the issue behind ORA-01775: looping chain of synonyms, but is there any trick to debugging it, or do I just have to "create or replace" my way out of it?
有没有办法查询模式或其他什么来找出公共同义词的当前定义是什么?
Is there a way to query the schema or whatever to find out what the current definition of a public synonym is?
更棒的是图形工具,但在这一点上,任何东西都会有所帮助.
Even more awesome would be a graphical tool, but at this point, anything would be helpful.
推荐答案
事实证明,问题实际上不是同义词的循环链,而是同义词指向不存在的视图这一事实.
As it turns out, the problem wasn't actually a looping chain of synonyms, but the fact that the synonym was pointing to a view that did not exist.
在这种情况下,Oracle 显然会出错为循环链.
Oracle apparently errors out as a looping chain in this condition.
这篇关于如何调试 ORA-01775:同义词循环链?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何调试 ORA-01775:同义词循环链?
- 更改自动增量起始编号? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- SQL 临时表问题 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01