oracle修改用户名

时间:2018-10-10 16:04:46   收藏:0   阅读:190
一、需求
将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;

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

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!