2004-12-24から1日間の記事一覧

テスト項目管理WEBアプリ

http://iserlone.minidns.net/programs/tisystem/index.php3なかなか便利かも…。機会があれば導入してみよう。 BTSと連動できるこの手のアプリはないのかな?

Oracleのロックの話

http://www.seshop.com/se/edu/shikaku/omo/miti/miti_plati13.asp?educat=platinum Oracleマスター取ろうかな…と思いつつ。

Oracleでデッドロックを起こす

1.(セッションA) 子レコードを更新。 update child set foo='bar' where id='C01';2.(セッションB) 親レコードを削除。(セッションBはWAIT) delete from parent where id='P01';3.(セッションA) 子レコードのFKが貼られたカラムを更新。 (デッドロック発…

呼び出しもとのクラス名、メソッド名を取得する

StackTraceElement[] elems = (new Exception()).getStackTrace(); elems[?].getClassName(); elems[?].getMethodName();…スマートじゃないなぁ。