connect_time 允许连接的时间 单位分钟
idle_time 连接被空闲多少时间后,被自动断开 单位分钟
logical_reads_per_session 读块数
private_sga 用户能够在SGA中使用的私有的空间数 单位bytes
(call级)
cpu_per_call 每次(1/100秒)调用cpu的时间
logical_reads_per_call 每次调用能够读的块数
*/
alter profile profile_name limit cpu_per_call 1000 logical_reads_per_call 10;
desc dbms_resouce_manager;---资源管理器包
/*获取资源信息的表或视图*/
select * from dba_users/dba_profiles;
###### Managing users ############
show parameter os;
create user testuser1 identified by kxf_001;
grant connect,createtable to testuser1;
alter user testuser1 quota 10m on tablespace_name;
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/