ablog

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

2010-01-26から1日間の記事一覧

ブラウザで漫画・コミック本を描いて公開するSNS「漫描き」がリリースされたらしい

なんか知り合いが SNS を作ったみたい。http://mankaki.jp/ http://headlines.yahoo.co.jp/hl?a=20100126-00000006-zdn_n-sci ブラウザ上で漫画描けるSNS「漫描き」 - ITmedia NEWS

ORA-27038: created file already exists

ERROR at line 1: ORA-01501: CREATE DATABASE failed ORA-00200: control file could not be created ORA-00202: control file: '/opt/app/oracle/oradata/orcl/control01.ctl' ORA-27038: created file already exists Additional information: 1 ほえ?「…

rman でオンラインバックアップとってたけど、ディスク容量が足りなくなったときの対処法

ただのメモ。 不要なデカいファイルがないか探して、あれば消す。 # du --max-depth=3 -x /u01 | sort -n 5336 /u01/app/oracle/oraInventory 15292 /u01/app/oracle/admin 1798588 /u01/app/oracle/product 1968812 /u01/app/oracle/oradata 3788032 /u01/a…

初期化パラメータ log_buffer を変更する

SQL> conn / as sysdba SQL> alter system set log_buffer=5242880 scope=spfile; SQL> shutdwon immedaite SQL> startup SQL> show parameter log_buffer NAME TYPE VALUE ------------------------------------ ----------- -----------------------------…

無効オブジェクトをコンパイルする方法

Oracle Database で無効な PL/SQL オブジェクトをコンパイルし、無効なインデックスを再構築する手順。 まだちゃんと検証してないけど、とりあえずメモっておく。 conn / as sysdba --無効な PL/SQL オブジェクトをコンパイルする EXECUTE UTL_RECOMP.RECOMP…