31 lines
1.2 KiB
SQL
31 lines
1.2 KiB
SQL
------------------------------------------------
|
|
--创建用户_platform_dictionary
|
|
------------------------------------------------
|
|
create user platform_dictionary identified by qrwl default tablespace platform_dictionary temporary tablespace platform_tempgroup profile default;
|
|
--授予角色权限
|
|
grant connect to platform_dictionary;
|
|
grant dba to platform_dictionary;
|
|
--授予系统权限
|
|
grant unlimited tablespace to platform_dictionary;
|
|
|
|
------------------------------------------------
|
|
--创建用户_platform_framework
|
|
------------------------------------------------
|
|
create user platform_framework identified by qrwl default tablespace platform_framework temporary tablespace platform_tempgroup profile default;
|
|
--授予角色权限
|
|
grant dba to platform_framework;
|
|
grant connect to platform_framework;
|
|
--授予系统权限
|
|
grant unlimited tablespace to platform_framework;
|
|
|
|
------------------------------------------------
|
|
--创建用户_platform_module
|
|
------------------------------------------------
|
|
create user platform_module identified by qrwl default tablespace platform_module temporary tablespace platform_tempgroup profile default;
|
|
--授予角色权限
|
|
grant dba to platform_module;
|
|
grant connect to platform_module;
|
|
--授予系统权限
|
|
grant unlimited tablespace to platform_module;
|
|
|