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

gitコマンド覚書

git

色付け git config --global color.diff auto git config --global color.status auto git config --global color.branch auto 更新 cd git/test-core/ git status git pull 最新に上書き git status git checkout -- JP/script/test/ttttt.pl git status gi…

トランザクション実行時の問題と分離レベル

Dirty Read 別のtransactionで更新後、commitされていないデータを読む。 TransactionA x=10 x=x-5 | | x=10 |r |w rollback x=10 ---------------------------------- x=5 |r | x=5 TransactionB Fuzzy Read (Nonrepeatable Read) = 反復不能読み取り 同一T…