oracle更改用戶名稱

字號(hào):


    做oracle導(dǎo)入(備份原有用戶)
    1--查詢用戶存在
    select user#, name from user$ where name ='VIDS';
    2--更改用戶名稱
    update user$ set name = 'VIDS123' where user# = 8759;