oracle 同义词

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 同义词相关的知识,希望对你有一定的参考价值。

--同义词 作用
--1 隐藏对象的名称和它的所有者
--2 提供对象的公共访问
--3同义词分类 1 公有同义词 2私有同义词

create table this_table_student(
sid integer primary key
)

insert into this_table_student values(‘11‘);
insert into this_table_student values(‘12‘);
insert into this_table_student values(‘13‘);

select *from this_table_student;
commit;
--赋权
grant create synonym to scott;
grant create public synonym to scott;

--创建私有同义词
create or replace synonym tmts for this_table_student;

select *from scott.this_table_student;
select *from tmts;

--创建公有同义词
create or replace public synonym pbtmts for this_table_student;


select *from this_table_student;
select *from pbtmts ;
insert into pbtmts values(4);




































以上是关于oracle 同义词的主要内容,如果未能解决你的问题,请参考以下文章

oracle 查看同义词

oracle 中怎么创建同义词?

oracle 创建所有表的同义词

Oracle 基础——同义词

oracle同义词

Oracle中的Dblink和同义词有啥区别吗