您好,登錄后才能下訂單哦!
一、連接數(shù)情況:
查看當(dāng)前的連接數(shù)
select count() from v$process;
查看設(shè)置的最大連接數(shù)(默認(rèn)值為150):
select value from v$parameter where name = 'processes';
修改最大連接數(shù)
alter system set processes = 300 scope = spfile ;
二、查詢表空間:
select tablespace_name from user_tablespaces;
查看所有表空間對(duì)應(yīng)的數(shù)據(jù)文件:
select tablespace_name,file_name from dba_data_files;
三、查詢登錄表空間:
select default_tablespace from dba_users where username='登錄用戶'
四、查看所有表空間及表空間大?。?/strong>
select tablespace_name ,sum(bytes) / 1024 / 1024 as MB from dba_data_files group by tablespace_name;
查看臨時(shí)表空間的大小:
select tablespace_name,file_id,file_name,bytes/1024/1024 as "space(MB)"
from dba_temp_files
where tablespace_name = 'TEMP';
五、查詢用戶下所有表
select * from all_tables where owner='TEST';(TEST為用戶名,用戶名必須是大寫。)
查看當(dāng)前登錄的用戶的表:
select table_name from user_tables;
六、創(chuàng)建表空間步驟:
分為四步
/第1步:創(chuàng)建臨時(shí)表空間 /
create temporary tablespace user_temp
tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
/第2步:創(chuàng)建數(shù)據(jù)表空間 /
create tablespace user_data
logging
datafile 'D:\oracle\oradata\Oracle9i\user_data.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
/第3步:創(chuàng)建用戶并指定表空間 /
create user username identified by password
default tablespace user_data
temporary tablespace user_temp;
/第4步:給用戶授予權(quán)限 /
grant connect,resource,dba to username;
七、多個(gè)數(shù)據(jù)文件累加:
將表空間存儲(chǔ)為多個(gè)數(shù)據(jù)文件,每個(gè)文件不大于32GB(精確的值為32768M)
語法如下:(不夠的話繼續(xù)添加數(shù)據(jù)文件)
--為表空間增加數(shù)據(jù)文件
create tablespace JC_DATA
logging
datafile 'F:\app\oracle\oradata\orcl\JC_DATA01.dbf'
size 50m
autoextend on
next 50m maxsize 32767m
extent management local;
--為表空間增加數(shù)據(jù)文件
alter tablespace JC_DATA
add datafile 'F:\app\oracle\oradata\orcl\JC_DATA02.dbf' size 50m
autoextend on next 50m maxsize 32767m;
八、查詢當(dāng)前數(shù)據(jù)庫中表空間是否為自動(dòng)擴(kuò)展:
查詢所有:
select tablespace_name,file_name,autoextensible from dba_data_files;
查詢指定表空間:
select tablespace_name,file_name,autoextensible from dba_data_files where tablespace_name='NCCW_DATA';
開啟自動(dòng)擴(kuò)展功能語法:
alter database datafile '對(duì)應(yīng)的數(shù)據(jù)文件路徑信息' autoextend on;
關(guān)閉自動(dòng)擴(kuò)展功能語法:
alter database datafile '對(duì)應(yīng)的數(shù)據(jù)文件路徑信息' autoextend off;
轉(zhuǎn)自:
https://hewei0212.iteye.com/blog/1884123
https://www.cnblogs.com/netsql/articles/1745978.html
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。