真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

oracle常用命令2

一、連接數(shù)情況
查看當(dāng)前的連接數(shù)
select count() from v$process;
查看設(shè)置的最大連接數(shù)(默認值為150):
select value from v$parameter where name = 'processes';
修改最大連接數(shù)
alter system set processes = 300 scope = spfile ;
二、查詢表空間:
select tablespace_name from user_tablespaces;
查看所有表空間對應(yīng)的數(shù)據(jù)文件:
select tablespace_name,file_name from dba_data_files;
三、查詢登錄表空間:
select default_tablespace from dba_users where username='登錄用戶'

創(chuàng)新互聯(lián)自2013年創(chuàng)立以來,公司以成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)、系統(tǒng)開發(fā)、網(wǎng)絡(luò)推廣、文化傳媒、企業(yè)宣傳、平面廣告設(shè)計等為主要業(yè)務(wù),適用行業(yè)近百種。服務(wù)企業(yè)客戶上1000家,涉及國內(nèi)多個省份客戶。擁有多年網(wǎng)站建設(shè)開發(fā)經(jīng)驗。為企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、創(chuàng)意設(shè)計、宣傳推廣等服務(wù)。 通過專業(yè)的設(shè)計、獨特的風(fēng)格,為不同客戶提供各種風(fēng)格的特色服務(wù)。

四、查看所有表空間及表空間大?。?/strong>

select tablespace_name ,sum(bytes) / 1024 / 1024 as MB from dba_data_files group by tablespace_name;

查看臨時表空間的大小:
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)建臨時表空間 /
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;

七、多個數(shù)據(jù)文件累加:
將表空間存儲為多個數(shù)據(jù)文件,每個文件不大于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ù)庫中表空間是否為自動擴展:
查詢所有:
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';

開啟自動擴展功能語法:
alter database datafile '對應(yīng)的數(shù)據(jù)文件路徑信息' autoextend on;
關(guān)閉自動擴展功能語法:
alter database datafile '對應(yīng)的數(shù)據(jù)文件路徑信息' autoextend off;

轉(zhuǎn)自:
https://hewei0212.iteye.com/blog/1884123
https://www.cnblogs.com/netsql/articles/1745978.html


新聞名稱:oracle常用命令2
當(dāng)前URL:http://weahome.cn/article/pcpjdi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部