Limits the number of days the same password can be used for
authentication. The password expires if it is not changed
within this period, and further connections are rejected.
Specifies the number of days before which a password cannot
be reused. If you set PASSWORD_REUSE_TIME to an
integer value, then you must set PASSWORD_REUSE_MAX
to UNLIMITED.
Specifies the number of password changes required before
the current password can be reused. If you set
PASSWORD_REUSE_MAX to an integer value, then you
must set PASSWORD_REUSE_TIME to UNLIMITED.
Specifies the number of days after the grace period begins
during which a warning is issued and login is allowed. If the
password is not changed during the grace period, the
password expires.
Allows a PL/SQL password complexity verification script to
be passed as an argument to the CREATE PROFILE
statement. Oracle provides a default script, but you can create
your own routine or use third-party software instead.
Function is the name of the password complexity verification
routine. NULL indicates that no password verification is
performed.
CREATE ROLE role_name
[ NOT IDENTIFIED |
IDENTIFIED {BY password | USING [schema.] package | EXTERNALLY |
GLOBALLY } ;
role.
TheIDENTIFIED phrase means that a user must be authorized by a specified method before the role is enabled.
The BY password phrase means that a user must supply a password to enable the role.
external service can be an operating system or third-party service.
TheG LO BA LLY phrase means that a user must be authorized by the enterprise directory service to enable the role.
Data Dictionary Objects Related to Roles:
create role
drop any role
grant any role
Leave a Comment