ablog

不器用で落着きのない技術者のメモ

2012-08-01から1ヶ月間の記事一覧

ORACLE_HOME の下のディレクトリやファイルのパーミッションについて調べたいとき

find . -name '*.log' -print0|xargs -0 grep chmod

DBAのタスクにはどんなものがあるか

DBAのタスクにはどんなものがあるか世の中の情報を集めてみた。 タイプ別DBAのタスク DBAの3タイプ データベースコンサルタントのノウハウちょい見せ より 開発者側DBAの担当タスク例 データモデリング 物理設計 DB作成 オブジェクト作成 SQLコーディング S…

Big Kernel Lock

1.3. No BKL (Big Kernel Lock) The Big Kernel Lock is a giant lock that was introduced in Linux 2.0, when Alan Cox introduced SMP support for first time. But it was just an step to achieve SMP scalability - only one process can run kernel c…

HASH_VALUE から OLD_HASH_VALUE を求める

select snap_id, sql_id, hash_value, old_hash_value, plan_hash_value, cost from stats$sql_plan_usage where hash_value = 3805929877; 参考 Secret ORACLE: Unleashing the Full Potential of the ORACLE DBMS by Leveraging Undocumented Features作者…

二分探索とハッシュと二分探索木とB木の比較

二分探索、ハッシュ、二分探索木、B木がわかりやすく比較されていたのでメモ。アルゴリズムクイックリファレンス作者: George T. Heineman,Gary Pollice,Stanley Selkow,黒川利明,黒川洋出版社/メーカー: オライリージャパン発売日: 2010/04/26メディア: 単…

FreeStyleWiki のスタイル設定で「No such file or directory at plugin/admin/AdminStyleHandler.pm line 120」と怒られる

現象 admin でログインして[スタイル設定]をクリックすると以下のエラーが発生する。 No such file or directory at plugin/admin/AdminStyleHandler.pm line 120. at lib/Util.pm line 679. 解決策 setup.dat の theme_dir のパスが間違っていないか確認し…

FreeStyleWiki をセットアップする

ダウンロードする ダウンロードファイル一覧 - FreeStyleWiki - OSDN から wiki3_6_4.zip をダウンロードする。 セットアップする wiki3_6_4.zip を解凍して docs/readme.html を参考にセットアップする。 # cd/usr/local/src # unzip wiki3_6_4.zip # chown…

Apache 2.4 をインストールする

ダウンロードする Download - The Apache HTTP Server Project から httpd-2.4.2.tar.gz をダウンロードする。 Download - The Apache Portable Runtime Project から apr-1.4.6.tar.gz、apr-util-1.4.1.tar.gz をダウンロードする。 ダウンロードファイル一…

Apache 2.4 で confiugre 実行時に「configure: error: pcre-config for libpcre not found」と怒られる

現象 # /usr/local/src/httpd-2.4.2 # ./configure --prefix=/usr/local/apache2 ... configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/ 解決策 ダウンロードファイル一覧 - PCRE - OSDN から pc…

Apache 2.4 で configure 実行時に「configure: error: APR not found」と怒られる

現象 # cd /usr/local/src/httpd-2.4.2 # ./configure --prefix=/usr/local/apache2 checking for chosen layout... Apache checking for working mkdir -p... yes checking for grep that handles long lines and -e... /bin/grep checking for egrep... /b…

JPOUGのイベントで「私がPerlを使う理由」というお題でLTしました

7/21(土)に JPOUG> SET EVENTS 20120721 で「私がPerlを使う理由」というお題で発表しました。 そのときの資料を公開します。 発表の準備をする余裕があまりなく口頭で八割補足する予定だったので、資料は説明不足ですw 次回はきちんと準備して宇宙ネタをや…