sqlplus "/as sysdba"
或者
sqlplus /nolog --不在cmd或者terminal当中暴露密码的登陆方式
conn /as sysdba

查看用户信息

select username,lock_date,profile,EXPIRY_DATE from dba_users order by EXPIRY_DATE desc;

查看默认PROFILE的策略

select * from dba_profiles where profile='DEFAULT';
audit session whenever not successful;

set lines
col userhost for a20
col COMMENT$TEXT for a30
col SPARE1 for a20
col NTIMESTAMP# for a35
select sessionid,userid,userhost,comment$text,spare1,to_char(ntimestamp#+/,'yyyy-mm-dd hh24:mi:ss') from aud$ where returncode= order by ntimestamp# asc;

最新文章

  1. Node ExpressJs server的路径设置
  2. map 遍历
  3. OpenGL顶点缓冲区对象(VBO)
  4. aria-expanded,aria-hidden到底做什么用?
  5. windows7下实现局域网内文件共享
  6. Codeforces Round #360 (Div. 2) D. Remainders Game 中国剩余定理
  7. void,extern,sizeof
  8. x240 uefi ubuntu 12.04.4
  9. iOS自定义转场动画的实现
  10. .NET ThreadPool算法
  11. 学习 MeteoInfo二次开发教程(一)
  12. java缓存技术的介绍
  13. centos 7 lvs 负载均衡搭建部署
  14. JUC源码阅读参考文章
  15. MySQL Study之--MySQL下图形工具的使用(MySQL Administrator)
  16. C语言指针的一些题目
  17. HDU-4055:Number String
  18. 回顾static与final的作用
  19. django 生命周期
  20. 安装mysql8.13用Navicat Premium链接本地数据库报2059

热门文章

  1. Window下Tomcat单机部署多应用
  2. HTTP 状态码的完整列表
  3. SQL 更新修改删除一个表,库存自动增减的写法
  4. Windows系统下MySQL数据库出现Access denied for user 'root'@'localhost' (using password:YES) 错误
  5. centos绑定多个域名
  6. 【亲测可用,亦可配置同一平台的不同账号,例如阿里云的两个不同账号】Windows下Git多账号配置,同一电脑多个ssh-key的管理
  7. 关于java多线程理解到集群分布式和网络设计的浅析
  8. 前端模拟后台返回数据之Mockjs
  9. C#连接Access数据库显示未在本地计算机注册解决方法
  10. java1.8 新特性(关于 match,find reduce )操作