标签:profile connect tab class drop 有用 创建用户 结果 ant
sqlplus / as sysdba
create user test1 identified by test1;
select * from dba_users t where t.username = 'TEST1';
授予连接权限和数据权限的语句,完成这一步,我们就可以用客户端连接改用户了
grant connect, resource to test1;
将 test1 账号的 密码修改为 test2
alter user test1 identified by test2;
alter profile default limit password_life_time unlimited;
drop user test1; -- 普通账号
drop user test1 cascade; -- 带数据权限的
select * from dba_users; -- 查询数据库下的所有用户(需要 dba 权限)
select * from all_users; -- 查询数据库下的所有用户(相对于上一条,查询结果字段比较少)
select * from user_users; -- 查询当前用户的相关信息
select userenv ('language') from dual; -- 查询字符集
select * from user_tables; -- 查询当前用户下的所有表
select * from user_sequences; -- 查询当前用户下的所有序列
select t.name from user_source t where t.type = 'TRIGGER' group by t.name; -- 查询当前用户下所有触发器
标签:profile connect tab class drop 有用 创建用户 结果 ant
原文地址:https://www.cnblogs.com/lovling/p/12499198.html