進入Oracle用戶
su - oracle
以dba身份進入sql語句
sqlplus / as sysdba
啟動數(shù)據(jù)庫相關命令
啟動數(shù)據(jù)庫
startup
啟動監(jiān)聽(關閉監(jiān)聽的命令lsnrctl stop)linux常用命令linux常用命令,退出sql編寫界面
lsnrctl start
關閉數(shù)據(jù)庫服務,在sql編寫界面
shutdown immediate
?串斍斑B接用戶的信息
select * from user_users;
查看數(shù)據(jù)庫的啟動狀態(tài) (查看進程里面有沒 有Oracle數(shù)據(jù)庫這個進程)
ps -ef|grep oracle
表空間相關命令
Sql語句執(zhí)行的時候要加上分號
創(chuàng)建表空間:
SQL> create tablespace test_work 2 datafile'/u01/app/oracle/oradata/abc.dbf' 3 size 10M AUTOEXTEND ON;
查詢當前所有的表空間:
select *from DBA_TABLESPACES
分類別查看當前的表空間:
SQL> select tablespace_name, 2 file_name, 3 round(bytes / (1024 * 1024), 0) total_space(顯示出來的數(shù)字是以M為單位的) 4 from dba_data_files 5 order by tablespace_name;
刪除相應的表空間
drop tablespace xxx including contents and datafiles;
查看詳細數(shù)據(jù)文件:
SQL> select file_name,tablespace_name from dba_data_files;
擴展表空間
alter database datafile '/u01/app/oracle/oradata/abc.dbf' resize 20M;
查看表空間的名字及文件所在位置
select tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0) total_space from sys.dba_data_files order by tablespace_name
-查詢當前表空間下使用情況
select a.tablespace_name, a.bytes / 1024 / 1024 "sum MB", (a.bytes - b.bytes) / 1024 / 1024 "used MB", b.bytes / 1024 / 1024 "free MB", round(((a.bytes - b.bytes) / a.bytes) * 100, 2) "used%" from (select tablespace_name, sum(bytes) bytes from dba_data_files group by tablespace_name) a, (select tablespace_name, sum(bytes) bytes, max(bytes) largest from dba_free_space group by tablespace_name) b where a.tablespace_name = b.tablespace_name order by ((a.bytes - b.bytes) / a.bytes) desc;
posted @ 2019-07-31 11:17tomhaha 閱讀(...) 評論(...) 編輯
上一個教程:相對路徑以及一些命令20180409
下一個教程:嵌入式Linux實驗一 Linux常用命令