liunx下oracle的操作日誌

2021-07-09 03:14:12 字數 888 閱讀 9182



centos64中操作啟動過程

匯入資料庫

drop user sty cascade;

drop tablespace eas_d_sty_standard  including contents and datafiles;

drop tablespace temp_sty  including contents and datafiles;

create directory expnc_dir as '/bak/ncdatabak';

create user sty identified by sty

default tablespace eas_d_sty_standard

temporary tablespace temp_sty;

grant dba,connect,resource to sty;

grant read,write on directory expnc_dir to sty;

impdp sty/sty directory=expnc_dir dumpfile=sty.dmp remap_schema=sty:sty remap_tablespace=eas_d_sty_standard:eas_d_sty_standard

--注意,此處可能因為沒有作/ncdatabak的許可權而失敗,可以先檢視是否有許可權再進行授權,在root使用者下執行

--具體命令:chmod -r 777 /bak/ncdatabak

匯出資料庫

expdp system/1qaz2wsx directory=expnc_dir dumpfile=sty.dmp schemas=sty;

--注意expnc_dir許可權問題

liunx系統下分割槽操作

在 dev 目錄下,每乙個驅動器以乙個單獨的裝置檔案來表現。通常最常見的是硬碟,對 於ide 硬碟一般可以有二到四個。這就是 dev hda dev hdb dev hdc 和 dev hdd,hd 是硬碟 的意思,a 則是代表第乙個裝置,hda1 中的 1 代表hda 的第乙個硬碟分割槽,依此類推...

liunx實用操作

tip1 grep命令 grep命令主要用於篩選字串,該命令通常與管道命令一起使用,格式如下 grep acinv color auto 查詢字串 filename 主要的操作如下 a 將binary檔案以text檔案的方式查詢資料 c 計算找到 查詢字串 的次數 i 忽略大小寫的區別,即把大小寫視...

Liunx 操作目錄

liunx 開機啟動流程 記憶體管理 系統檔案目錄 磁碟管理 掛載解除安裝 磁碟空間調整大小 防火牆防火牆命令 伺服器端口 服務商埠 網路配置 程序管理 父子程序 殭屍程序 孤兒程序 執行緒管理 軟體管理 安裝解除安裝 軟體設定 軟體執行級操作 chkconfig 執行狀態操作 service 使用...