Hago la traducción del mismo:
En Oracle Database 12c, se indrodujo una nueva funcionalidad en la herramienta SQL*Plus, el "Last Successful Login".
SQL*Plus de Oracle Database 12c agrega información en la pantalla de login, por default informa cual es la última fecha y hora de login de usuario.
SQL*Plus: Release 12.1.0.1.0 Production on Thu Mar 27 16:23:55 2014
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Last Successful login time: Wed Mar 26 2014 16:02:23 +01:00
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics
and Real Application Testing options
Esta información también puede ser obtenida de la vista DBA_USERS:
SQL> select username,last_login
from dba_users
where username = 'SCOTT';
USERNAME LAST_LOGIN
--------------- -------------------------
SCOTT 27.03.2014 16:23:56
Para deshabilitar esto, sólo basta con aplicar la opción:
[oracle@server01]$ sqlplus -nologintime scott/tiger
SQL*Plus: Release 12.1.0.1.0 Production on Thu Mar 27 16:26:40 2014
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics
and Real Application Testing options
Referencias:
http://docs.oracle.com/cd/E16655_01/server.121/e18404/ch_three.htm
No hay comentarios:
Publicar un comentario