oracle 常用命令
1、 oracle的四種狀態
shutdown
(完全關閉)、 nomount
(未載入)、 mount
(已載入)、 open
(完全開啟)
2、 啟動關閉資料庫
sqlplus / as sysdba -> startup; shutdown immediate;
select
* from v$instance; -> 檢視例項資訊
select
* from v$bgprocess; -> 檢視後台程序
select
* from v$parameter; -> 檢視引數
select
* from v$sga; -> 檢視sga
select
* from v$session; -> 檢視回話資訊
select
* from v$tablespace; -> 檢視命名空間
select
* from v$datafile; -> 檢視資料檔案
select
* from v$database
-> 檢視資料庫
select
* from v$logfile
-> 檢視日誌檔案
3、 啟動監聽:lsnrctl start / lsnrctl stop / lsnrctl status
4、 oracle的匯出和匯入
exp test/test@ip:1521/ora11g file=111.dmp tables=table1,table2,table3
imp test/test@ip:1521/ora11g file=111.dmp tables=table1,table2,table3
Oracle常用基本命令(一)
oracle中最基本的就是一些命令,專案中常用到的有 1.顯示當前例項 select instance name host name from v instance 2.顯示當前所有使用者及狀態 select username,account status from dba users 3.連線某個...
oracle基本命令
1 describe查詢表結構 describe xuesheng 名稱 空值 型別 id number 38 xing ming varchar2 25 yu wen number shu xue number 2 select 列名稱 from 表名稱 select from xuesheng ...
oracle基本命令
sqlplus 鏈結oracle資料庫 sqlplus as sysdba 1 檢視當前的資料庫檔案一般都是放在 select name from v datafile 2 建立表空間 create tablespace 表空間名 datafile 對應的檔名 size 大小 3 建立使用者 cre...