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

oracle修改用户名

时间:2018-10-10 16:06:52      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:flush   用户   poi   set   com   HERE   update   pool   lte   

一、需求
将test用户名修改为test1
二、步骤
select user#,name from user$ where name=‘TEST‘;
update user$ set name =‘TEST1‘ where user#=159;
commit;
alter system checkpoint;
alter system flush shared_pool;
alter user test1 identified by test1;

oracle修改用户名

标签:flush   用户   poi   set   com   HERE   update   pool   lte   

原文地址:http://blog.51cto.com/felixgzf/2298324

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