oracle同義詞語句備份

2021-08-06 07:44:02 字數 746 閱讀 7064

--建立同義詞

create synonym t_system_userdepartment for xtzl.t_system_userdepartment;

--查詢同義詞

select * from sys.all_synonyms where synonym_name='t_system_post';

--查詢當前使用者下的同義詞

select * from user_synonyms;

--授權查詢

grant select on tabel1 to secmgt

--撤銷許可權;

revoke insert on t_system_userdepartment from secmgt;

--查詢當前使用者下的序列號

select * from user_sequences;

--測試查詢

select a.* ,rowid from t_system_department a ;

--刪除測試

delete from t_system_department where id='1';

--測試插入

insert into t_system_department (id,deptname,parentid,state,orderno) values (1,'測試部門','0','啟用','123');

--刪除測試

drop table t_system_userdepartment;

ORACLE授權 同義詞 序列語句

點關注不迷路,歡迎再訪!精簡部落格內容,盡量已專業術語來分享。努力做到對每一位認可自己的讀者負責。幫助別人的同時更是豐富自己的良機。1.授權 grant revoke object privileges grant select,insert,update on ai opr t user info...

Oracle的同義詞

oracle中建立同義詞語句 create synonym table name foruser.table name 其中第乙個user table和第二個user table可以不一樣。此外如果要建立乙個遠端的資料庫上的某張表的同義詞,需要先建立乙個databaselink 資料庫連線 來擴充套...

ORACLE同義詞詳解

1 同義詞概述 同義詞從字面上理解就是別名的意思,和檢視的功能類似。就是一種對映關係。同義詞擁有如下好處 節省大量的資料庫空間,對不同使用者的操作同一張表沒有多少差別 擴充套件的資料庫的使用範圍,能夠在不同的資料庫使用者之間實現無縫互動 同義詞可以建立在不同乙個資料庫伺服器上,通過網路實現連線。知識...