ORACLE查看並修改最大串連數

來源:互聯網
上載者:User

標籤:des   style   color   使用   os   io   檔案   資料   

1. 查看processes和sessions參數

  SQL> show parameter processes

  NAME                                  TYPE         VALUE

  db_writer_processes                  integer     1

  gcs_server_processes                 integer     0

  job_queue_processes                  integer     10

  log_archive_max_processes            integer     2

  processes                            integer     50

  SQL> show parameter sessions

  NAME                                  TYPE         VALUE

  license_max_sessions                 integer     0

  license_sessions_warning             integer     0

  logmnr_max_persistent_sessions       integer     1

  sessions                             integer     60

  shared_server_sessions               integer

  2. 修改processes和sessions值

  SQL> alter system set processes=300 scope=spfile;

  系統已更改。

  SQL> alter system set sessions=335 scope=spfile;

  系統已更改。

  3. 修改processes和sessions值必須重啟oracle伺服器才會生效

  ORACLE的串連數(sessions)與其參數檔案中的進程數(process)有關,它們的關係如下:

  sessions=(1.1*process+5)

  摘(二)

  查詢資料庫當前進程的串連數:

  select count(*) from v$process;

  查看資料庫當前會話的串連數:

  elect count(*) from v$session;

  查看資料庫的並發串連數:

  select count(*) from v$session where status=‘ACTIVE‘;

  查看當前資料庫建立的會話情況:

  select sid,serial#,username,program,machine,status from v$session;

 查詢資料庫允許的最大串連數:

  select value from v$parameter where name = ‘processes‘;

  或者:show parameter processes;

  修改資料庫允許的最大串連數:

  alter system set processes = 300 scope = spfile;

  (需要重啟資料庫才能實現串連數的修改)

  重啟資料庫:

  shutdown immediate;

  startup;

  查看當前有哪些使用者正在使用資料:

  select osuser,a.username,cpu_time/executions/1000000||‘s‘,sql_fulltext,machine

  from v$session a,v$sqlarea b

  where a.sql_address = b.address

  order by cpu_time/executions desc;

  備忘:UNIX 1個使用者session對應一個作業系統process,而Windows體現線上程。

  啟動oracle

  su - oracle

  sqlplus system/pwd as sysdba   //進入sql

  startup                                      //啟動資料庫

  lsnrctl start                               //啟動監聽

  sqlplus "/as sysdba"

  shutdown immediate;

  startup mount;

  alter database open;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.