创建同义词时出现重复错误
我正在尝试为 Oracle 中的用户创建同义词。
BEGIN
FOR S IN (SELECT owner, table_name FROM all_tables WHERE owner = 'TABLE_OWNER') LOOP
EXECUTE IMMEDIATE 'create synonym '||S.table_name||' for '||S.owner||'.'||S.table_name||'';
END LOOP;
END;
执行时,Toad 中出现以下错误:
第 1 行错误 ORA-00955: 名称已被现有对象使用 ORA-06512: 在第 3 行
有什么想法吗?
I am attempting to create synonyms for a user in Oracle.
BEGIN
FOR S IN (SELECT owner, table_name FROM all_tables WHERE owner = 'TABLE_OWNER') LOOP
EXECUTE IMMEDIATE 'create synonym '||S.table_name||' for '||S.owner||'.'||S.table_name||'';
END LOOP;
END;
I get the following error in Toad when executed:
Error at line 1
ORA-00955: name is already used by an existing object
ORA-06512: at line 3
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,表名和所有者以及同义词名称和所有者不能相同。只能存在一种对象/所有者组合。您必须更改表名的所有者或同义词的名称。
Yes, the table name and owner and the synonym name and owner cannot be the same. Only one object/owner combination may exist. You must either change the owner or the name for the synonym from the table name.