SQL> select code,length(filedata) from blob01 where code='B99';
COD LENGTH(FILEDATA)
--- ----------------
B99 2060
SQL> update blob01 set filedata=utl_compress.lz_uncompress(filedata)
2 where code ='B99';
1行が更新されました。
SQL> commit;
コミットが完了しました。
SQL> select code,length(filedata) from blob01 where code='B99';
COD LENGTH(FILEDATA)
--- ----------------
B99 2201
|