1.在 oracleservice 服務啟動動後,就可以對資料庫進行管理了,oracle 的啟動和關閉是最基本的命令,在 sql*plus 中,啟動 oracle 必須是 sys 使用者,命令格式是:
startup open
oracle 服務關閉用命令:shutdownimmediate
oracle 中,一般不會輕易在乙個伺服器上建立多個資料庫,在乙個資料庫中,不同的項
目由不同的使用者訪問,每乙個使用者擁有自身建立的資料庫物件,因此使用者的概念在 oracle
中非常重要。oracle 的使用者可以用 create user 命令來建立。其語法是:
create user 使用者名稱 identified by 口令 [account lock|unlock]
例如:
sql> create user jerry
2 identified by tom
3 account unlock;
*注意:oracle 在 sql*plus 中的命令以分號(;)結尾,代表命令完畢並執行,系統同時會把
該命令儲存在快取中,快取中只儲存最近執行過的命令,如果重新執行快取中的命
令,直接使用左斜槓符號(/)。如果命令不以分號結尾,該命令只是寫入快取儲存起
來,但並不執行。*
oracle資料庫基本操作
一 增 有3種方法 1.使用insert插入單行資料 insert into 表名 列名 values 列值 insert into strdents name,age values atm 12 2.使用insert,select語句將現有表中的 資料新增到已有的新錶中 insert into 已...
oracle資料庫基本操作
檢視磁碟使用情況 df h 進入oracle su oracle sqlplus nolog conn as sysdba 檢視三種資料庫檔案 select from vlo gfil e 日 志檔案s elec t fr omv datafile 資料檔案 select from v contro...
oracle資料庫基本操作
oracle建立表空間和使用者授權 sys使用者在cmd下以dba身份登入 在cmd中打sqlplus nolog 匿名登入 然後再conn as sysdba 以dba身份登入 建立臨時表空間 create temporary tablespace bigoa temp tempfile e or...