檢視表空間的名稱及大小
select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size
from dba_tablespaces t, dba_data_files d
where t.tablespace_name = d.tablespace_name
group by t.tablespace_name;
檢視表空間物理檔案的名稱及大小
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
資料匯出:
1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d:daochu.dmp中
exp system/manager@test
file=d:daochu.dmp full=y
2 將資料庫中system使用者與sys使用者的表匯出
exp system/manager@test
file=d:daochu.dmp owner=(system,sys)
3 將資料庫中的表inner_notify、notify_staff_relat匯出
exp aichannel/aichannel@testdb2
file= d:datanewsmgnt.dmp tables=(inner_notify,notify_staff_relat)
4 將資料庫中的表table1中的字段filed1以"00"打頭的資料匯出
exp system/manager@test
file=d:daochu.dmp tables=(table1) query=" where filed1 like '00%'"
上面是常用的匯出,對於壓縮,既用winzip把dmp檔案可以很好的壓縮。
也可以在上面命令後面 加上 compress=y 來實現。
資料的匯入
1 將d:daochu.dmp 中的資料匯入 test資料庫中。
imp system/manager@test
file=d:daochu.dmp
imp aichannel/aichannel@hust
full=y file= d:datanewsmgnt.dmp ignore=y
上面可能有點問題,因為有的表已經存在,然後它就報錯,對該錶就不進行匯入。
在後面加上 ignore=y 就可以了。
2 將d:daochu.dmp中的表table1 匯入
imp system/manager@test
file=d:daochu.dmp tables=(table1)
2023年11月18日
儲存過程中自定義條件查詢
open p_recordset for
select * from
business
where
company_type=nvl(p_company_type, company_type) and
customer_type=nvl(p_customer_type,customer_type) and ...
oracle中的空應該用的是null,非空就是not null
(待續。。。)
Oracle 常用命令
1 檢視當前所有物件 sql select from tab 2 建乙個和a表結構一樣的空表 sql create table b as select from a where 1 2 sql create table b b1,b2,b3 as select a1,a2,a3 from a whe...
oracle常用命令
create insert delete select 建立使用者必須在sys超級管理員下 連線到超級管理員 conn sys as sysdba sys zhuangyan system zhuangyan scott tiger 查出所有 clerk 辦事員 的姓名及其部門名稱,部門的人數.找出...
oracle 常用命令
建立臨時表空間 02createtemporarytablespace os temp 03tempfile c oracle product 10.2.0 oradata os temp.dbf 04size100m 05autoextendon 06next100m maxsize 1024m ...