久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      oracle怎樣修改用戶

      方法:1、利用“update user$ set name='新用戶名' where name='舊用戶名'”語句修改用戶名;2、利用“alter user 用戶名 identified by '新密碼';”語句修改用戶密碼。

      oracle怎樣修改用戶

      本教程操作環(huán)境:Windows10系統(tǒng)、Oracle 11g版、Dell G3電腦。

      oracle怎樣修改用戶

      比如要把用戶TEXT改為TEXT_BAK:

      SQL> select user#,name,password from user$ where name ='TEXT'; USER# NAME PASSWORD

      78 TEXT 21EDA78F89D6FACD

      更改用戶名

      SQL> update user$ set name='TEXT_BAK' where user#=78; 1 row updated. SQL> commit; Commit complete.

      用戶名更改后需要清楚緩存數(shù)據(jù)字典信息。

      SQL> alter system checkpoint; ----強(qiáng)制寫入數(shù)據(jù)文件 System altered. SQL> alter system flush shared_pool; ----清楚緩存數(shù)據(jù)字典信息,強(qiáng)制oracle讀實(shí)際數(shù)據(jù)(即更改后的數(shù)據(jù)) System altered.

      并變更用戶登錄密碼。

      SQL> alter user TEXT_BAK identified by 'aaaaaa'; User altered.

      推薦教程:《Oracle視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)