Oracle 创建表空间,用户,赋值(简装)
一,
1.Oracle 創(chuàng)建表空間,用戶,賦值(簡裝)
C:\Documents and Settings\Administrator>sqlplus /nolog
SQL> conn /as sysdba
2.刪除用戶
drop user username cascade;
3.創(chuàng)建自增表表空間
SQL> create tablespace?表空間 datafile 'E:\oracle\product\10.2.0\oradata\表空間.dbf' size 50m autoextend on;
4.創(chuàng)建用戶
create user username identified by password default tablespace 表空間;
5.賦值
grant dba to username;
exit
6.導(dǎo)入數(shù)據(jù)庫
在本地導(dǎo)入數(shù)據(jù)庫
C:\>imp 用戶名/用戶密碼@實(shí)例名 file=G:\oracle\oracle.bak full=y
7.導(dǎo)入數(shù)據(jù)庫
導(dǎo)出非本地?cái)?shù)據(jù)庫
C:\>exp rows=y owner=用戶名 file="E:\289\庫名_201107.dmp" log="e:\289\庫名_201107.log"
額外操作
增加表空間
SQL> alter tablespace sjpt resize 500m;
ORA-32773: 不支持對小文件表空間 SJPT 的操作
如果報(bào)以上錯(cuò)誤則換為:
SQL> alter tablespace sjpt add datafile 'd:\oradata\sjpt1.dbf' size 500m reuse autoextend on next 100m;
?
二,
http://jun0325.javaeye.com/blog/603783
2.1.查看所有表空間大小:
select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;
2.2.已經(jīng)使用的表空間大小:
select tablespace_name,sum(bytes)/1024/1024 from dba_free_space group by tablespace_name;
2.3. 所以使用空間可以這樣計(jì)算:
select a.tablespace_name,total,free,total-free used from????
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files???
?? group by tablespace_name) a,????
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space???
?? group by tablespace_name) b???
where a.tablespace_name=b.tablespace_name;
?
最近一直在導(dǎo)入Oracle的很多備份到新的服務(wù)器上的新的Oracle上,但是導(dǎo)入新服務(wù)器的Oracle上后,發(fā)現(xiàn)使用的仍然是之前默認(rèn)使用的USERS表空間,并非使用我自行創(chuàng)建的表空間,于是從網(wǎng)上索羅了很多修改表空間的方法終于搞定了。
主要用到了下面幾個(gè)sql:?
(1) 查詢占用該表空間的表: select segment_name,bytes/1024/1024 from dba_segments where tablespace_name='ts_name' and segment_type='TABLE';?
(2) 修改表所使用的表空間: alter table buffalo_wf_processinstance move tablespace "ts_name";?
(3) 修改帶有大字段表的表空間: alter table tb_name(表名) move tablespace tbs_name(表空間名) lob(col_lob1(字段名),col_lob2) store as(tablesapce tbs_name);?
(4) 對于有索引的表重建索引: alter index PK_T_CMS_CATALOG(索引名) rebuild; 不知道各位高手在遇到這種情況的時(shí)候是如何修改它的表空間?
?
?三,
3.1
查看表空間是否為自增??
---如果有多個(gè)數(shù)據(jù)文件,則單個(gè)顯示分開顯示、
?select TABLESPACE_NAME, AUTOEXTENSIBLE from dba_data_files;
----表空間沒有自增屬性,而表空間中的數(shù)據(jù)文件是可以自增的,所以間接達(dá)到表空間自增
select distinct TABLESPACE_NAME, AUTOEXTENSIBLE from dba_data_files;
3.2
查看數(shù)據(jù)文件,有時(shí)會(huì)有多個(gè),而且不在同一目錄,所以需要用到
select * from dba_data_files;
?2011-01-06
轉(zhuǎn)載于:https://blog.51cto.com/hi289/1832572
總結(jié)
以上是生活随笔為你收集整理的Oracle 创建表空间,用户,赋值(简装)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 模拟UIWebView
- 下一篇: LightGBM中GBDT的实现