1. 程式人生 > >建立使用者只有檢視所有資料庫表和檢視的許可權(只有檢視許可權)

建立使用者只有檢視所有資料庫表和檢視的許可權(只有檢視許可權)

CREATE USER USER1 IDENTIFIED BY USER1 DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP;

grant create session to USER1;

grant select any table to USER1;

grant select any dictionary to USER1;