摘要:
http://kerryosborne.oracle-guy.com/2008/10/oracle-management-packs/ There has been quite a bit of confusion about the licensing of Oracle Management Packs and about their functionality. Here are a co... 阅读全文
摘要:
检查AWR当前设置:SQL> select * from dba_hist_wr_control; DBID SNAP_INTERVAL RETENTION TOPNSQL---------- ------------------------- ------------------------- ---------- 9520... 阅读全文
摘要:
将文件中的换行替换为逗号 使用sed:sed -e :a -e N -e '$!ba' -e 's/\n/,/g' filename使用tr:cat filename | tr '\n' ',' 或 tr '\n' ',' < filename 将文件中的逗号替换为换行 使用vi::1,%s/,/^M/g^M - Ctrl+V, Ctrl+M vi 命令功能 :s... 阅读全文