create user cxuser01 identified by test123 default tablespace USERS temporary tablespace TEMP; --創建用戶 grant connect,resource,select any table ...
Create user UserName Identified By UserPassword 創建用戶 GRANT SELECT ANY DICTIONARY TO UserName 授予所有字典的查詢權限GRANT SELECT ANY SEQUENCE TO UserName 授予所有序列的查詢權限GRANT SELECT ANY TABLE TO UserName 授予所有表的查詢權限 G ...
2020-05-12 09:26 0 937 推薦指數:
create user cxuser01 identified by test123 default tablespace USERS temporary tablespace TEMP; --創建用戶 grant connect,resource,select any table ...
Oracle建立表空間和用戶 [sql] view plain copy 建立表空間和用戶的步驟: 用戶 建立:create user 用戶名 identified by "密碼"; 授權:grant create session to 用戶 ...
1,創建表空間 create tablespace hxzg_data logging datafile 'C:\app\data\hxzg_data.dbf' size 50m autoextend on next 50m maxsize 20480m ; 2,創建用戶 ...
創建一個只讀用戶user2,只能查詢管理員用戶user1下的表,不能增刪改。 操作環境:PL/SQL Developer 1、用管理員用戶user1登錄,創建用戶user2、並授權 2、授予user2的查詢表權限:復制下面的查詢結果,執行 3、為user2創建 ...
創建一個只讀用戶user2,只能查詢管理員用戶user1下的表,不能增刪改。 操作環境:PL/SQL Developer 1、用管理員用戶user1登錄,創建用戶user2、並授權 2、授予user2的查詢表權限:復制下面的查詢結果,執行 3、為user2創建 ...
execute on TAITOU2.P_TW to TAITOU;--執行另一個用戶的P_TW包gran ...
1.創建一個用戶名為readonly密碼為ropass的用戶CREATE USER readonly WITH ENCRYPTED PASSWORD 'ropass'; 2.用戶只讀事務alter user readonly set default_transaction_read_only ...
步驟指南 創建用戶 授予connect權限 授予只讀權限 搞定!!!! ...