码迷,mamicode.com
首页 > 数据库 > 详细

Oracle密码过期设置和修改密码问题

时间:2018-07-17 10:35:28      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:blog   profile   time   bsp   select   问题   ted   def   .net   

Oracle密码过期设置和修改密码问题

学习了:https://jingyan.baidu.com/article/ce09321b5608612bff858ff3.html

sqlplus / as  sysdba
select * from dba_profiles s where s.profile=‘DEFAULT‘ and resource_name=‘PASSWORD_LIFE_TIME‘;
alter profile default limit PASSWORD_LIFE_TIME UNLIMITED;
alter user username identified by password;

修改密码的时候,如果密码带有@符号,

学习了:http://blog.itpub.net/29067253/viewspace-2144617/

需要使用双引号进行包围,用户登陆需要使用单引号扩上双引号;

alter user username identified by "pass@word";
sqlplus ‘user/"pass@word"‘

 

Oracle密码过期设置和修改密码问题

标签:blog   profile   time   bsp   select   问题   ted   def   .net   

原文地址:https://www.cnblogs.com/stono/p/9321624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!