开发者博客:www.developsearch.com
从字面上理解就是别名的意思,和视图的功能类似。就是一种映射关系。
创建同义词语句:
create public synonym table_name for user.table_name;
其中第一个user_table和第二个user_table可以不一样。
此外如果要创建一个远程的数据库上的某张表的同义词,需要先创建一个Database Link(数据库连接)来扩展访问,然后在使用如下语句创建数据库同义词:create synonym table_name for table_name@DB_Link;
当然,你可能需要在user用户中给当前用户(user2)授权: grant select/delete/update on user2
删除同义词:
drop public synonym table_name;
查看所有同义词:
select * from dba_synonyms
同义词拥有如下好处:节省大量的数据库空间,对不同用户的操作同一张表没有多少差别;扩展的数据库的使用范围,能够在不同的数据库用户之间实现无缝交互;同义词可以创建在不同一个数据库服务器上,通过网络实现连接。
贵州IMS实例:
删除用户:
drop user idealims_ods cascade;
给ODS创建用户 :
create user idealims_ods
identified by "idealims_ods"
default tablespace IDEALIMS
temporary tablespace IDEALIMSTEMPDB
profile DEFAULT;
给用户权限:
grant connect to idealims_ods;
grant dba to idealims_ods;
创建同义词:
create or replace synonym IMS_ODS_EMPLOYEE for idealims.IMS_VT_ODS_EMPLOYEE;
create or replace synonym IMS_ODS_ORGANIZATION
for idealims.IMS_VT_ODS_ORGANIZATION;
create or replace synonym IMS_ODS_SYSTEM for idealims.IMS_VT_ODS_SYSTEM;
create or replace synonym IMS_ODS_USER_SYSTEM for idealims.IMS_VT_ODS_USER_SYSTEM;
回收dba权限
REVOKE dba from idealims_ods;
只给查询权限
grant select on idealims.IMS_VT_ODS_EMPLOYEE to idealims_ods;
grant select on idealims.IMS_VT_ODS_ORGANIZATION to idealims_ods;
grant select on idealims.IMS_VT_ODS_SYSTEM to idealims_ods;
grant select on idealims.IMS_VT_ODS_USER_SYSTEM to idealims_ods;
开发者博客:www.developsearch.com