⑴ 怎麼在cmd里用create命令建立資料庫
1.cmd->sqlplus 用戶名/密碼@資料庫名 (as sysdba)
->enter
註:如果此用戶名不是系統用戶sys,scott,system就不需要加as sysdba
2.create tablespace space1 datafile 'D:\ORACALEdataflie\JG.dbf' size 1000M autoExtend on
注意:D:\ORACALEdataflie必須存在不然報錯
3.create user user1 identified by 123 default tablespace space1
4.grant connect,dba to user1
5.exit
6.imp user1/123@資料庫名 file=f:\xx.dmp full=y ignore=y; 這個是導入資料庫