您好,登錄后才能下訂單哦!
sql里面保存屏幕輸出的內(nèi)容的命令:
spool /tmp/a.txt
******執(zhí)行任何sql操作
spool off
ho cat /tmp/a.txt
啟動(dòng)sqlplus工具:
su - oracle
$lsnrctl status/start/stop 查看監(jiān)聽(tīng)狀態(tài)以及啟動(dòng)停止監(jiān)聽(tīng)
sqlplus / as sysdba
sqlplus工具啟動(dòng)成功,進(jìn)入SQL提示符!
SQL>
進(jìn)入SQL提示符要做的第一件事是登錄:
SQL>conn scott/tiger
查看當(dāng)前使用哪一個(gè)用戶登錄的
SQL> show user
在命令行為scott用戶解鎖:
SQL>conn / as sysdba
SQL>alter user scott identified by tiger account unlock;
SQL>conn scott/tiger
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux Error: 2: No such file or directory
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
查看數(shù)據(jù)庫(kù)相關(guān)的系統(tǒng)進(jìn)程:
ps -ef | grep ora_
查看數(shù)據(jù)庫(kù)的共享內(nèi)存是否分配:
ipcs -sm
系統(tǒng)reboot后怎么啟動(dòng)數(shù)據(jù)庫(kù)?
su - oracle
sqlplus / as sysdba
SQL>startup或者shutdown immediate
SQL>select status from v$instance; 查看實(shí)例狀態(tài),正常為open
SQL>conn scott/tiger
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。