The time of the last user login.

问题描述 投票:0回答:1
Maybe it's just me...

Thanks You!

Oracle 12c. I'm not a DBA so maybe this is a dumb question or clarified within the context of DB convention. When I review the DBA_USERS table, does the column 'LAST_LOGIN' refer to the last ...It's the time of the last

successful login.You can find out yourself: open a SQL*Plus session and try to log in, but give an incorrect password. Then run

- you will see that the time of your failed login is not recorded in the table.

Oracle 12c.DBA_USERS表 - LAST_LOGIN是指最后一次成功登录,还是最后一次尝试登录?

我不是一个DBA,所以也许这是一个愚蠢的问题,或者在DB惯例的范围内澄清。

当我查看DBA_USERS表时,列 "LAST_LOGIN "是指最后一次成功登录(即有人仍在成功使用该账户)还是最后一次登录?
oracle database-administration
1个回答
2
投票

希望这不是一个太简单的格式问题。莫名其妙的上网查了一下,结果什么也没有查到,而且这个 文件 于事无补

select last_login from dba_users where username = 'YOURNAME';LAST_LOGIN

© www.soinside.com 2019 - 2024. All rights reserved.