2025-03-27 15:05:14 +08:00

28 lines
1.3 KiB
SQL

------------------------------------------------
--创建用户_UNIFORMSEND_STORAGE
------------------------------------------------
create user UNIFORMSEND_STORAGE identified by qrwl default tablespace UNIFORMSEND_STORAGE temporary tablespace realestate_tempgroup profile default;
--授予角色权限
grant connect to UNIFORMSEND_STORAGE;
grant dba to UNIFORMSEND_STORAGE;
--授予系统权限
grant under any view to UNIFORMSEND_STORAGE;
grant select any table to UNIFORMSEND_STORAGE;
grant grant any role to UNIFORMSEND_STORAGE;
grant grant any object privilege to UNIFORMSEND_STORAGE;
grant execute any program to UNIFORMSEND_STORAGE;
grant grant any privilege to UNIFORMSEND_STORAGE;
grant create any procedure to UNIFORMSEND_STORAGE;
grant select any sequence to UNIFORMSEND_STORAGE;
grant create any view to UNIFORMSEND_STORAGE;
grant under any type to UNIFORMSEND_STORAGE;
grant alter any procedure to UNIFORMSEND_STORAGE;
grant insert any table to UNIFORMSEND_STORAGE;
grant unlimited tablespace to UNIFORMSEND_STORAGE;
grant execute any procedure to UNIFORMSEND_STORAGE;
grant create any table to UNIFORMSEND_STORAGE;
grant select any dictionary to UNIFORMSEND_STORAGE;
grant alter any operator to UNIFORMSEND_STORAGE;
grant delete any table to UNIFORMSEND_STORAGE;
grant update any table to UNIFORMSEND_STORAGE;
grant alter any table to UNIFORMSEND_STORAGE;