檢視表空間
select * from dba_tablespaces;
查詢資料庫檔案
select * fromdba_data_files;
查詢所有表
select * from dba_tables;
建立表空間
create tablespace 表空間名稱 datafile '表空間的物理路徑' size 50m autoextend on;
注:表空間物理路徑:c:\oracle\oradata\orcl\system01.dbf 格式一般為dbf 路徑根據資料庫具體安裝到**
建立臨時表空間
create temporary tablespace 臨時表空間名稱 tempfile '臨時表空間物理路徑' size 50m autoextend on;
注:臨時表空間格式一般也是dbf
刪除表空間
drop tablespace 表空間名稱 including contents and datafile;
Oracle資料庫常用命令
export oracle sid db name 伺服器 啟動資料庫伺服器 lsnrctl start sqlplus as sysdba sql startup 資料庫 建立資料庫 oracle home bin dbca 或者 oracle home bin dbassist 連線資料庫 co...
Oracle資料庫常用命令
誤刪正在使用的表空間後處理辦法 1 connect sys as sysdba 用sys登陸資料庫 2 shutdown 解除安裝資料庫,關閉資料庫 3 startup mount 例程啟動 4 alter database open 開啟資料庫 5 alter database datafile ...
Oracle資料庫常用命令
1 主鍵和外來鍵 主鍵 關係型資料庫中的一條記錄中有若干個屬性,若其中的某乙個屬性組 注意是組,可以是乙個,也可以是多個 能唯一標識一條記錄,那麼該屬性組就是主鍵 外來鍵 關係型資料庫表中的一列或者某幾列的組合,它的值與另外一張表的某一列或者某幾列相匹配,且為另一張表的主鍵 即這張表的某一列或某幾列...