oracle 序列如何建同义词
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 序列如何建同义词相关的知识,希望对你有一定的参考价值。
create user lych0001 indentified 123456;
create user lych0002 indentified 123456;
grant connect,resource to lych0001;
grant connect,resource to lych0002;
grant create create synonym to lych0001;
grant create public create synonym to lych0001;
login on lych0001
create sequence seq001
start with 1
increment by 1
maxvalue 300
nocycle
cache 10;
create public synonym seq001 for lych0001.seq001;
grant select on seq001 to lych0002;
此时lych00002用户便可以使用seq001的sequnence了
以上是关于oracle 序列如何建同义词的主要内容,如果未能解决你的问题,请参考以下文章