Oracle DMP相關操作命令

在開始菜單中點擊【運行】,輸入CMD,最好用管理員權限打開命令行窗口

(1)sqlplus /nolog

(2)conn /as sysdba;
(3)drop user orientedmsf cascade; 
           drop tablespace orientedm including contents and datafiles cascade constraints;
(4) create tablespace orientedm datafile 'orientedm.dbf' size 200M autoextend on next 50 maxsize unlimited; 
            create user orientedmsf identified by orientedmsf default tablespace orientedm temporary tablespace temp;
            grant dba,resource,connect to orientedmsf;
(5)exit;
(6)imp orientedmsf/orientedmsf file=E:\ buffer=4096000 full=y   
(7)exp orientedmsf/orientedmsf file=E:\
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章