Home > Database > Mysql Tutorial > Oracle其他数据对象-同义词

Oracle其他数据对象-同义词

WBOY
Release: 2016-06-07 17:12:31
Original
1111 people have browsed it

1. 介绍一下 使用同义词访问相同的对象: (1)方便访问其它用户的对象 (2)缩短对象名字的长度 2.创建同义词 SQLgt; create

1. 介绍一下

使用同义词访问相同的对象:

(1)方便访问其它用户的对象

(2)缩短对象名字的长度

2.创建同义词

SQL> create synonym syn_emp for scott.emp;

同义词已创建。

3.删除同义词

SQL> drop synonym syn_emp;

同义词已删除。

注:在创建之后,在一个sqlplus窗口中可以访问,再打开一个sqlplus窗口后访问不到,,所以应加上public,为:

SQL> create public synonym syn_emp for scott.emp;

所以删除的时候为:

SQL> drop  public synonym syn_emp;

如果在登入的时候不知道密码,可以用以下的语句进入,是最高管理员的:

sqlplus sys/pass as sysdba

更多Oracle相关信息见Oracle 专题页面 ?tid=12

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template