oracle11g建立新的使用者和修改最大串連數,oracle11g建立

來源:互聯網
上載者:User

oracle11g建立新的使用者和修改最大串連數,oracle11g建立

create user test identified by root;grant create session,resource to root;alter user test account unlock;grant create view to test;grant any sequece to test;grant create synonym to ich;--建立別名的許可權drop user test cascade;串連時使用者民不區分大小寫alter system set sec_case_sensitive_logon=false scope=both;commit;修改使用者密碼alter user system identified by system; 
在使用者1中建立的sequece test_seq如果想在使用者2中使用(select test_seq.nextval from dual)必須現在使用者2中執行select test_seq.nextval from dual;oracle一個建立使用者、建立資料表空間、授權、建表的完整過程1. 用sys登入sql plus:    usename: sys as sysdba    password: ****2. 查看最大串連數: select value from V$parameter where name="processes";3. 查看當前串連數: select count (*) from V$process;4. 把最大串連數改成300:alter system set processes=300 scope=spfile5. 重啟DB: shutdown immediate;                 startup;


怎更改oracle資料庫的使用者串連數?

修改initSID.ora,將process加大,重啟資料庫.
 
怎增加oracle的使用者串連數?

在你的oracle安裝目錄下,例如:
oracle\admin\xxx\pfile\init.ora
找到
processes=zzz
把zzz修改為你想要的值就行,其中xxx是你的資料庫名

要注意的是:使用者最大串連數跟你的硬體設定有關,所以要謹慎.
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.