一、连接数情况:--查看当前的连接数select count(*) from v$process;--查看设置的最大连接数(默认值为150):select value from v$parameter where name = ‘processes‘;--修改最大连接数:alter system set processes = 300 scope = spfile ; 二、查询表空间:select tablespace_name from user_tablespaces;