当前位置: 首页 > news >正文

ORA-00980: synonym translation is no longer valid, version 9


You Asked
1.在数据库中的概念 同义词(synonym)是指向其它数据库表的数据库指针。
Hi Tom,

I run Oracle 7.3 for years in Window NT machine with an C++ application and it work
fine.

I recently updated my Oracle to 9i in Windows 2000 to my new machine (different
machine). After Imported the database from my old machine to a new one my application
wrote in C++ no longer work and came up with an error

*********
ERROR:
CDBException Generated.
ORA-00980: synonym translation is no longer valid
Option value changed.

Please close and Restart Application.

***************

Thanks. your answer is greatly appreciated.

David


and we said...
that means you lost some object/access to some object when you did your move. That error
simply means "synonym is still here, but the object it points to is inaccessible". It
could be inaccessible due to a missing grant, or due to the object not being there.

You need to find out what synonym it is, query the data dictionary to figure out what
object it points to and figure out why you no longer have access to that object.

ops$tkyte@ORA920> create synonym s for t;
Synonym created.

ops$tkyte@ORA920> select * from s where rownum = 1;

C
----------
1

ops$tkyte@ORA920> drop table t;
Table dropped.

ops$tkyte@ORA920> select * from s where rownum = 1;
select * from s where rownum = 1
*
ERROR at line 1:
ORA-00980: synonym translation is no longer valid


http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:7095288486502


相关文章:

  • [原创] css中的绝对定位和相对定位
  • 页面触底自动加载数据
  • SSL配置及练习
  • 从上百幅架构图中学得半点大型网站建设经验(上)
  • jquery选择器
  • 深切悼念苹果的老大乔布斯
  • css理论
  • windwos7 em控制台使用操作系统用户错误
  • angular4.0如何引入外部插件1:import方案
  • Thinking in React Implemented by Reagent
  • Streams复制文档
  • 动手动脑(课后实验):类和对象
  • 金额字段加千位分隔符
  • Python 中raw 字符串和多行字符串
  • 基本类型小总结
  • 网络传输文件的问题
  • [数据结构]链表的实现在PHP中
  • Android优雅地处理按钮重复点击
  • axios 和 cookie 的那些事
  • bearychat的java client
  • HTML中设置input等文本框为不可操作
  • iOS | NSProxy
  • java中具有继承关系的类及其对象初始化顺序
  • JSDuck 与 AngularJS 融合技巧
  • MyEclipse 8.0 GA 搭建 Struts2 + Spring2 + Hibernate3 (测试)
  • spring学习第二天
  • vue总结
  • 缓存与缓冲
  • 简单易用的leetcode开发测试工具(npm)
  • 前嗅ForeSpider中数据浏览界面介绍
  • 用简单代码看卷积组块发展
  • Linux权限管理(week1_day5)--技术流ken
  • 从如何停掉 Promise 链说起
  • ​决定德拉瓦州地区版图的关键历史事件
  • #define用法
  • (3)选择元素——(17)练习(Exercises)
  • (C++17) optional的使用
  • (安卓)跳转应用市场APP详情页的方式
  • (附源码)基于SpringBoot和Vue的厨到家服务平台的设计与实现 毕业设计 063133
  • .bat批处理(十一):替换字符串中包含百分号%的子串
  • .equals()到底是什么意思?
  • .htaccess 强制https 单独排除某个目录
  • .NET C#版本和.NET版本以及VS版本的对应关系
  • .NET Core Web APi类库如何内嵌运行?
  • .NET Core 成都线下面基会拉开序幕
  • .net core使用ef 6
  • .NET/C# 使用反射调用含 ref 或 out 参数的方法
  • .NET开发不可不知、不可不用的辅助类(一)
  • .NET框架类在ASP.NET中的使用(2) ——QA
  • .project文件
  • /proc/stat文件详解(翻译)
  • @property括号内属性讲解
  • @RequestBody的使用
  • [ CTF ] WriteUp- 2022年第三届“网鼎杯”网络安全大赛(朱雀组)
  • [AIGC] Nacos:一个简单 yet powerful 的配置中心和服务注册中心