码迷,mamicode.com
首页 > 数据库 > 详细

oracle 同义词

时间:2017-04-08 12:54:59      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:sid   ace   comm   insert   --   隐藏   sel   ble   作用   

--同义词 作用
--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 同义词

标签:sid   ace   comm   insert   --   隐藏   sel   ble   作用   

原文地址:http://www.cnblogs.com/KOAN-lcd/p/6681170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!