アーカイブ

2009 年 6 月 のアーカイブ

bookmarks 2009-06-26

2009 年 6 月 26 日 tdtsh Comments off

タブで切り替わるインターフェースの決定版 | CREAMU

http://blog.creamu.com/mt/2009/06/post_131.html

OVF(Open Virtualization Format)普及の始まりとバーチャルアプライアンスの課題

http://www.publickey.jp/blog/09/ovfopen_virtual_format.html

Google Guiceが便利!

http://blog.daisukeyamashita.com/post/718.html

1Password for iPhone に Pro が登場、Windows ユーザーにもうれしい機能

http://lifehacking.jp/2009/06/1password-goes-pro/

カテゴリー: 未分類 タグ:

夜の金沢城跡

2009 年 6 月 24 日 tdtsh Comments off

f:id:tdtsh:20090624214424j:image

金沢に出張した夜の散歩での一枚。

真っ暗で何もうつらないのが残念。

カテゴリー: 未分類 タグ:

Oracleで制御ファイルの自動バックアップ

2009 年 6 月 23 日 tdtsh Comments off
    • 制御ファイルの自動バックアップの有効化

rman target sys/pass@hoge

CONFIGURE CONTROLFILE AUTOBACKUP ON;

CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO ‘/path_to_backup/ctl_%F’

    • 自動バックアップからの制御ファイルのリストア

set dbid = 682122420;

set CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO ‘/path_to_backup/ctl_%F’

restore controlfile from autobackup;

カテゴリー: DBA, oracle タグ:

Oracleの表領域を移動 備忘録

2009 年 6 月 23 日 tdtsh Comments off

すぐに忘れるのでメモ。

Oracle 9iで実行

ALTER TABLESPACE USERS offline;

ここで表領域のデータファイルをコピーまたは移動する

mv /PATH_TO_CURRENT/USERS01.DBF /PATH_TO_MOVE/USERS01.DBF

ALTER TABLESPACE USERS RENAME DATAFILE ‘/PATH_TO_CURRENT/USERS01.DBF’ to ‘/PATH_TO_MOVE/USERS01.DBF’;

ALTER TABLESPACE USERS online;

カテゴリー: DBA, oracle タグ:

Oracleの表領域をオフライン/オンライン 備忘録

2009 年 6 月 23 日 tdtsh Comments off

すぐに忘れるのでメモ。

Oracle 9iで実行

ALTER TABLESPACE USERS read only;

ALTER TABLESPACE USERS read write;

カテゴリー: DBA, oracle タグ: