首页 > 数据库技术 > 详细

oracle修改用户名

时间:2018-10-10 16:04:46      阅读:190      评论:0      收藏:0      [点我收藏+]
一、需求
将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修改用户名

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!