oracle雜記
1、sqlplus /
sqlplus: error while loading shared libraries: libsqlplus.so: cannot open shared object file: No such file or directory
解決辦法:以root執行:
chmod -R a+rX $ORACLE_HOME
2、proc
proc: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
解決辦法:export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib:/usr/local/lib;
Enterprise Manager Database Control URL - (wgods) :
http://192.168.1.101:1158/em
iSQL*Plus URL 為:
http://192.168.1.101:5560/isqlplus
iSQL*Plus DBA URL 為:
http://192.168.1.101:5560/isqlplus/dba
3、cc -o unload -L $ORACLE_HOME/lib unload.c
unload.c:(.text+0x853): undefined reference to `sqlcxt'
cc -o unload -L $ORACLE_HOME/lib -l clntsh unload.c
4、expdp etl/etl dumpfile=test.dmp ;impdp etl/etl dumpfile=test.dmp
5、提取耗時較長sql
select sql_text,sql_fulltext,elapsed_time from v$sql where lower(sql_text) like '%select%dm.%' order by elapsed_time desc
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22630256/viewspace-1034465/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle雜燴筆記Oracle筆記
- oracle備份與恢復雜記Oracle
- html雜記HTML
- webserver 雜記WebServer
- cpp雜記
- Nodejs 雜記NodeJS
- HTTPS雜記HTTP
- 網路--------雜記
- 雜題記錄
- nginx聽課隨記雜記Nginx
- 雜記-本週工作記錄
- 前端模組化雜記前端
- React-Router 雜記React
- React-setState雜記React
- Linux雜記1Linux
- Linux雜記4Linux
- Linux雜記5Linux
- Linux雜記6Linux
- Linux雜記7Linux
- Linux雜記2Linux
- Linux雜記3Linux
- Web前端效能雜記Web前端
- RN 踩坑:雜記
- uvm學習雜記
- 資料庫雜記資料庫
- CefGlue 學習雜記
- rocketmq學習雜記MQ
- Perl指令碼 雜記指令碼
- 【筆記】Tricks - 雜項筆記
- 3 月雜題記
- 數學雜記(技)
- 8 月雜題記
- Android 學習筆記雜記Android筆記
- oracle表複雜查詢Oracle
- Oracle複雜查詢(三)Oracle
- 日常筆記大雜燴筆記
- unity3d--雜記Unity3D
- 搭建前端私有npm雜記前端NPM