Horje
oracle change password expiration policy Code Example
oracle change password expiration policy
CREATE PROFILE SHORT_LIFE_PROFILE LIMIT
    PASSWORD_LIFE_TIME 1/24/60/60 		--> 1 second
    PASSWORD_GRACE_TIME 1/24; 			--> 1 hour

ALTER USER user_name PROFILE SHORT_LIFE_PROFILE;    -- Log on to refresh

SELECT ACCOUNT_STATUS FROM DBA_USERS WHERE USERNAME = 'user_name';




Sql

Related
mysql zerofill Code Example mysql zerofill Code Example
sqlalchemy existing db file Code Example sqlalchemy existing db file Code Example
python sqlalchemy connection show server Code Example python sqlalchemy connection show server Code Example
generate sql trigger through ef migration Code Example generate sql trigger through ef migration Code Example
distinct sql Code Example distinct sql Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8